3 instantiations of ClaimActionCollection
Microsoft.AspNetCore.Authentication.OAuth (1)
OAuthOptions.cs (1)
79public ClaimActionCollection ClaimActions { get; } = new ClaimActionCollection();
Microsoft.AspNetCore.Authentication.OpenIdConnect (1)
OpenIdConnectOptions.cs (1)
150public ClaimActionCollection ClaimActions { get; } = new ClaimActionCollection();
Microsoft.AspNetCore.Authentication.Twitter (1)
TwitterOptions.cs (1)
63public ClaimActionCollection ClaimActions { get; } = new ClaimActionCollection();
27 references to ClaimActionCollection
Microsoft.AspNetCore.Authentication.OAuth (22)
ClaimActionCollectionMapExtensions.cs (21)
11/// Extension methods for <see cref="ClaimActionCollection"/>. 19/// <param name="collection">The <see cref="ClaimActionCollection"/>.</param> 22public static void MapJsonKey(this ClaimActionCollection collection, string claimType, string jsonKey) 33/// <param name="collection">The <see cref="ClaimActionCollection"/>.</param> 37public static void MapJsonKey(this ClaimActionCollection collection, string claimType, string jsonKey, string valueType) 48/// <param name="collection">The <see cref="ClaimActionCollection"/>.</param> 52public static void MapJsonSubKey(this ClaimActionCollection collection, string claimType, string jsonKey, string subKey) 63/// <param name="collection">The <see cref="ClaimActionCollection"/>.</param> 68public static void MapJsonSubKey(this ClaimActionCollection collection, string claimType, string jsonKey, string subKey, string valueType) 79/// <param name="collection">The <see cref="ClaimActionCollection"/>.</param> 82public static void MapCustomJson(this ClaimActionCollection collection, string claimType, Func<JsonElement, string?> resolver) 93/// <param name="collection">The <see cref="ClaimActionCollection"/>.</param> 97public static void MapCustomJson(this ClaimActionCollection collection, string claimType, string valueType, Func<JsonElement, string?> resolver) 107/// <param name="collection">The <see cref="ClaimActionCollection"/>.</param> 108public static void MapAll(this ClaimActionCollection collection) 119/// <param name="collection">The <see cref="ClaimActionCollection"/>.</param> 121public static void MapAllExcept(this ClaimActionCollection collection, params string[] exclusions) 132/// <param name="collection">The <see cref="ClaimActionCollection"/>.</param> 134public static void DeleteClaim(this ClaimActionCollection collection, string claimType) 144/// <param name="collection">The <see cref="ClaimActionCollection"/>.</param> 146public static void DeleteClaims(this ClaimActionCollection collection, params string[] claimTypes)
OAuthOptions.cs (1)
79public ClaimActionCollection ClaimActions { get; } = new ClaimActionCollection();
Microsoft.AspNetCore.Authentication.OpenIdConnect (4)
ClaimActionCollectionUniqueExtensions.cs (3)
11/// Extension methods for <see cref="ClaimActionCollection"/>. 23public static void MapUniqueJsonKey(this ClaimActionCollection collection, string claimType, string jsonKey) 37public static void MapUniqueJsonKey(this ClaimActionCollection collection, string claimType, string jsonKey, string valueType)
OpenIdConnectOptions.cs (1)
150public ClaimActionCollection ClaimActions { get; } = new ClaimActionCollection();
Microsoft.AspNetCore.Authentication.Twitter (1)
TwitterOptions.cs (1)
63public ClaimActionCollection ClaimActions { get; } = new ClaimActionCollection();