Browse Source

Update the XML documentation

pull/1012/head
Kévin Chalet 6 years ago
parent
commit
c68d3b3291
  1. 6
      src/OpenIddict.Server.DataProtection/OpenIddictServerDataProtectionOptions.cs
  2. 2
      src/OpenIddict.Validation.DataProtection/OpenIddictValidationDataProtectionBuilder.cs
  3. 6
      src/OpenIddict.Validation.DataProtection/OpenIddictValidationDataProtectionOptions.cs
  4. 2
      src/OpenIddict.Validation.SystemNetHttp/OpenIddictValidationSystemNetHttpHelpers.cs

6
src/OpenIddict.Server.DataProtection/OpenIddictServerDataProtectionOptions.cs

@ -9,7 +9,8 @@ using Microsoft.AspNetCore.DataProtection;
namespace OpenIddict.Server.DataProtection
{
/// <summary>
/// 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.
/// </summary>
public class OpenIddictServerDataProtectionOptions
{
@ -22,8 +23,7 @@ namespace OpenIddict.Server.DataProtection
public IDataProtectionProvider DataProtectionProvider { get; set; }
/// <summary>
/// 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.
/// </summary>
public IOpenIddictServerDataProtectionFormatter Formatter { get; set; }
= new OpenIddictServerDataProtectionFormatter();

2
src/OpenIddict.Validation.DataProtection/OpenIddictValidationDataProtectionBuilder.cs

@ -68,7 +68,7 @@ namespace Microsoft.Extensions.DependencyInjection
/// <summary>
/// Configures OpenIddict to use a specific formatter instead of relying on the default instance.
/// </summary>
/// <param name="formatter">The formatter used to read and write tokens.</param>
/// <param name="formatter">The formatter used to read tokens.</param>
/// <returns>The <see cref="OpenIddictValidationDataProtectionBuilder"/>.</returns>
public OpenIddictValidationDataProtectionBuilder UseFormatter([NotNull] IOpenIddictValidationDataProtectionFormatter formatter)
{

6
src/OpenIddict.Validation.DataProtection/OpenIddictValidationDataProtectionOptions.cs

@ -9,7 +9,8 @@ using Microsoft.AspNetCore.DataProtection;
namespace OpenIddict.Validation.DataProtection
{
/// <summary>
/// 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.
/// </summary>
public class OpenIddictValidationDataProtectionOptions
{
@ -22,8 +23,7 @@ namespace OpenIddict.Validation.DataProtection
public IDataProtectionProvider DataProtectionProvider { get; set; }
/// <summary>
/// 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.
/// </summary>
public IOpenIddictValidationDataProtectionFormatter Formatter { get; set; }
= new OpenIddictValidationDataProtectionFormatter();

2
src/OpenIddict.Validation.SystemNetHttp/OpenIddictValidationSystemNetHttpHelpers.cs

@ -10,7 +10,7 @@ using OpenIddict.Validation;
namespace System.Net.Http
{
/// <summary>
/// Exposes companion extensions for the OpenIddict/ASP.NET Core integration.
/// Exposes companion extensions for the OpenIddict/System.Net.Http integration.
/// </summary>
public static class OpenIddictValidationSystemNetHttpHelpers
{

Loading…
Cancel
Save