diff --git a/src/OpenIddict.Client.SystemIntegration/OpenIddictClientSystemIntegrationHttpListener.cs b/src/OpenIddict.Client.SystemIntegration/OpenIddictClientSystemIntegrationHttpListener.cs index 2adc8e68..947bdbed 100644 --- a/src/OpenIddict.Client.SystemIntegration/OpenIddictClientSystemIntegrationHttpListener.cs +++ b/src/OpenIddict.Client.SystemIntegration/OpenIddictClientSystemIntegrationHttpListener.cs @@ -15,12 +15,8 @@ using OpenIddict.Extensions; namespace OpenIddict.Client.SystemIntegration; /// -/// Contains the logic necessary to handle URI protocol activations that -/// are redirected by other instances using inter-process communication. +/// Contains the logic necessary to handle HTTP requests. /// -/// -/// Note: initial URI protocol activations are handled by . -/// [EditorBrowsable(EditorBrowsableState.Never)] public sealed class OpenIddictClientSystemIntegrationHttpListener : BackgroundService { @@ -58,7 +54,7 @@ public sealed class OpenIddictClientSystemIntegrationHttpListener : BackgroundSe try { - // Note: finding a free port in the IANA dynamic port range can take a bit of time on busy systems. + // Note: finding a free port in the IANA dynamic ports range can take a bit of time on busy systems. // To ensure the host initialization is not blocked, the whole process is offloaded to the thread pool. await Task.Run(cancellationToken: stoppingToken, function: async () => {