|
|
|
@ -202,5 +202,27 @@ namespace Microsoft.Extensions.DependencyInjection |
|
|
|
/// <returns>The <see cref="OpenIddictValidationBuilder"/>.</returns>
|
|
|
|
public OpenIddictValidationBuilder UseReferenceTokens() |
|
|
|
=> Configure(options => options.UseReferenceTokens = true); |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Returns a string that represents the current object.
|
|
|
|
/// </summary>
|
|
|
|
/// <returns>A string that represents the current object.</returns>
|
|
|
|
[EditorBrowsable(EditorBrowsableState.Never)] |
|
|
|
public override string ToString() => base.ToString(); |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Determines whether the specified object is equal to the current object.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="obj">The object to compare with the current object.</param>
|
|
|
|
/// <returns><c>true</c> if the specified object is equal to the current object; otherwise, false.</returns>
|
|
|
|
[EditorBrowsable(EditorBrowsableState.Never)] |
|
|
|
public override bool Equals([CanBeNull] object obj) => base.Equals(obj); |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Serves as the default hash function.
|
|
|
|
/// </summary>
|
|
|
|
/// <returns>A hash code for the current object.</returns>
|
|
|
|
[EditorBrowsable(EditorBrowsableState.Never)] |
|
|
|
public override int GetHashCode() => base.GetHashCode(); |
|
|
|
} |
|
|
|
} |
|
|
|
|