Browse Source

Fix invalid XML documentation in the scopes manager/store

pull/533/head
Kévin Chalet 8 years ago
parent
commit
857820d6f9
  1. 6
      src/OpenIddict.Core/Managers/OpenIddictScopeManager.cs
  2. 6
      src/OpenIddict.Core/Stores/IOpenIddictScopeStore.cs
  3. 6
      src/OpenIddict.Core/Stores/OpenIddictScopeStore.cs
  4. 6
      src/OpenIddict.EntityFramework/Stores/OpenIddictScopeStore.cs
  5. 6
      src/OpenIddict.EntityFrameworkCore/Stores/OpenIddictScopeStore.cs

6
src/OpenIddict.Core/Managers/OpenIddictScopeManager.cs

@ -153,13 +153,13 @@ namespace OpenIddict.Core
}
/// <summary>
/// Retrieves an authorization using its unique identifier.
/// Retrieves a scope using its unique identifier.
/// </summary>
/// <param name="identifier">The unique identifier associated with the authorization.</param>
/// <param name="identifier">The unique identifier associated with the scope.</param>
/// <param name="cancellationToken">The <see cref="CancellationToken"/> that can be used to abort the operation.</param>
/// <returns>
/// A <see cref="Task"/> that can be used to monitor the asynchronous operation,
/// whose result returns the authorization corresponding to the identifier.
/// whose result returns the scope corresponding to the identifier.
/// </returns>
public virtual Task<TScope> FindByIdAsync([NotNull] string identifier, CancellationToken cancellationToken)
{

6
src/OpenIddict.Core/Stores/IOpenIddictScopeStore.cs

@ -62,13 +62,13 @@ namespace OpenIddict.Core
Task DeleteAsync([NotNull] TScope scope, CancellationToken cancellationToken);
/// <summary>
/// Retrieves an authorization using its unique identifier.
/// Retrieves a scope using its unique identifier.
/// </summary>
/// <param name="identifier">The unique identifier associated with the authorization.</param>
/// <param name="identifier">The unique identifier associated with the scope.</param>
/// <param name="cancellationToken">The <see cref="CancellationToken"/> that can be used to abort the operation.</param>
/// <returns>
/// A <see cref="Task"/> that can be used to monitor the asynchronous operation,
/// whose result returns the authorization corresponding to the identifier.
/// whose result returns the scope corresponding to the identifier.
/// </returns>
Task<TScope> FindByIdAsync([NotNull] string identifier, CancellationToken cancellationToken);

6
src/OpenIddict.Core/Stores/OpenIddictScopeStore.cs

@ -71,13 +71,13 @@ namespace OpenIddict.Core
public abstract Task DeleteAsync([NotNull] TScope scope, CancellationToken cancellationToken);
/// <summary>
/// Retrieves an authorization using its unique identifier.
/// Retrieves a scope using its unique identifier.
/// </summary>
/// <param name="identifier">The unique identifier associated with the authorization.</param>
/// <param name="identifier">The unique identifier associated with the scope.</param>
/// <param name="cancellationToken">The <see cref="CancellationToken"/> that can be used to abort the operation.</param>
/// <returns>
/// A <see cref="Task"/> that can be used to monitor the asynchronous operation,
/// whose result returns the authorization corresponding to the identifier.
/// whose result returns the scope corresponding to the identifier.
/// </returns>
public virtual Task<TScope> FindByIdAsync([NotNull] string identifier, CancellationToken cancellationToken)
{

6
src/OpenIddict.EntityFramework/Stores/OpenIddictScopeStore.cs

@ -135,13 +135,13 @@ namespace OpenIddict.EntityFramework
}
/// <summary>
/// Retrieves an authorization using its unique identifier.
/// Retrieves a scope using its unique identifier.
/// </summary>
/// <param name="identifier">The unique identifier associated with the authorization.</param>
/// <param name="identifier">The unique identifier associated with the scope.</param>
/// <param name="cancellationToken">The <see cref="CancellationToken"/> that can be used to abort the operation.</param>
/// <returns>
/// A <see cref="Task"/> that can be used to monitor the asynchronous operation,
/// whose result returns the authorization corresponding to the identifier.
/// whose result returns the scope corresponding to the identifier.
/// </returns>
public override Task<TScope> FindByIdAsync([NotNull] string identifier, CancellationToken cancellationToken)
{

6
src/OpenIddict.EntityFrameworkCore/Stores/OpenIddictScopeStore.cs

@ -135,13 +135,13 @@ namespace OpenIddict.EntityFrameworkCore
}
/// <summary>
/// Retrieves an authorization using its unique identifier.
/// Retrieves a scope using its unique identifier.
/// </summary>
/// <param name="identifier">The unique identifier associated with the authorization.</param>
/// <param name="identifier">The unique identifier associated with the scope.</param>
/// <param name="cancellationToken">The <see cref="CancellationToken"/> that can be used to abort the operation.</param>
/// <returns>
/// A <see cref="Task"/> that can be used to monitor the asynchronous operation,
/// whose result returns the authorization corresponding to the identifier.
/// whose result returns the scope corresponding to the identifier.
/// </returns>
public override Task<TScope> FindByIdAsync([NotNull] string identifier, CancellationToken cancellationToken)
{

Loading…
Cancel
Save