From c68d3b3291afa0683110184027d4c4949e18adb2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Chalet?= Date: Sun, 5 Jul 2020 16:44:24 +0200 Subject: [PATCH] Update the XML documentation --- .../OpenIddictServerDataProtectionOptions.cs | 6 +++--- .../OpenIddictValidationDataProtectionBuilder.cs | 2 +- .../OpenIddictValidationDataProtectionOptions.cs | 6 +++--- .../OpenIddictValidationSystemNetHttpHelpers.cs | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/OpenIddict.Server.DataProtection/OpenIddictServerDataProtectionOptions.cs b/src/OpenIddict.Server.DataProtection/OpenIddictServerDataProtectionOptions.cs index 3c495d31..0b60b72b 100644 --- a/src/OpenIddict.Server.DataProtection/OpenIddictServerDataProtectionOptions.cs +++ b/src/OpenIddict.Server.DataProtection/OpenIddictServerDataProtectionOptions.cs @@ -9,7 +9,8 @@ using Microsoft.AspNetCore.DataProtection; namespace OpenIddict.Server.DataProtection { /// - /// Provides various settings needed to configure the OpenIddict server handler. + /// Provides various settings needed to configure the OpenIddict + /// ASP.NET Core Data Protection server integration. /// public class OpenIddictServerDataProtectionOptions { @@ -22,8 +23,7 @@ namespace OpenIddict.Server.DataProtection public IDataProtectionProvider DataProtectionProvider { get; set; } /// - /// Gets or sets the formatter used to read and write Data Protection tokens, - /// serialized using the same format as the ASP.NET Core authentication tickets. + /// Gets or sets the formatter used to read and write Data Protection tokens. /// public IOpenIddictServerDataProtectionFormatter Formatter { get; set; } = new OpenIddictServerDataProtectionFormatter(); diff --git a/src/OpenIddict.Validation.DataProtection/OpenIddictValidationDataProtectionBuilder.cs b/src/OpenIddict.Validation.DataProtection/OpenIddictValidationDataProtectionBuilder.cs index 9f73f73d..3f7e3afa 100644 --- a/src/OpenIddict.Validation.DataProtection/OpenIddictValidationDataProtectionBuilder.cs +++ b/src/OpenIddict.Validation.DataProtection/OpenIddictValidationDataProtectionBuilder.cs @@ -68,7 +68,7 @@ namespace Microsoft.Extensions.DependencyInjection /// /// Configures OpenIddict to use a specific formatter instead of relying on the default instance. /// - /// The formatter used to read and write tokens. + /// The formatter used to read tokens. /// The . public OpenIddictValidationDataProtectionBuilder UseFormatter([NotNull] IOpenIddictValidationDataProtectionFormatter formatter) { diff --git a/src/OpenIddict.Validation.DataProtection/OpenIddictValidationDataProtectionOptions.cs b/src/OpenIddict.Validation.DataProtection/OpenIddictValidationDataProtectionOptions.cs index 1234b521..6de8daba 100644 --- a/src/OpenIddict.Validation.DataProtection/OpenIddictValidationDataProtectionOptions.cs +++ b/src/OpenIddict.Validation.DataProtection/OpenIddictValidationDataProtectionOptions.cs @@ -9,7 +9,8 @@ using Microsoft.AspNetCore.DataProtection; namespace OpenIddict.Validation.DataProtection { /// - /// Provides various settings needed to configure the OpenIddict validation handler. + /// Provides various settings needed to configure the OpenIddict + /// ASP.NET Core Data Protection validation integration. /// public class OpenIddictValidationDataProtectionOptions { @@ -22,8 +23,7 @@ namespace OpenIddict.Validation.DataProtection public IDataProtectionProvider DataProtectionProvider { get; set; } /// - /// Gets or sets the formatter used to read and write Data Protection tokens, - /// serialized using the same format as the ASP.NET Core authentication tickets. + /// Gets or sets the formatter used to read Data Protection tokens. /// public IOpenIddictValidationDataProtectionFormatter Formatter { get; set; } = new OpenIddictValidationDataProtectionFormatter(); diff --git a/src/OpenIddict.Validation.SystemNetHttp/OpenIddictValidationSystemNetHttpHelpers.cs b/src/OpenIddict.Validation.SystemNetHttp/OpenIddictValidationSystemNetHttpHelpers.cs index ef7d849a..2cce2434 100644 --- a/src/OpenIddict.Validation.SystemNetHttp/OpenIddictValidationSystemNetHttpHelpers.cs +++ b/src/OpenIddict.Validation.SystemNetHttp/OpenIddictValidationSystemNetHttpHelpers.cs @@ -10,7 +10,7 @@ using OpenIddict.Validation; namespace System.Net.Http { /// - /// Exposes companion extensions for the OpenIddict/ASP.NET Core integration. + /// Exposes companion extensions for the OpenIddict/System.Net.Http integration. /// public static class OpenIddictValidationSystemNetHttpHelpers {