From 87b6ece5fcdabe5feaff51451f2d3f19b0bdb4d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Chalet?= Date: Fri, 17 Feb 2023 09:56:33 +0100 Subject: [PATCH] Fix the XML documentation of the OpenIddictClientSystemIntegrationHttpListener class --- .../OpenIddictClientSystemIntegrationHttpListener.cs | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) 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 () => {