1 write to Parameters
Microsoft.AspNetCore.Authentication.Abstractions (1)
AuthenticationProperties.cs (1)
45Parameters = parameters ?? new Dictionary<string, object?>(StringComparer.Ordinal);
5 references to Parameters
Microsoft.AspNetCore.Authentication.Abstractions (5)
AuthenticationProperties.cs (5)
55new Dictionary<string, object?>(Parameters, StringComparer.Ordinal)); 147/// Get a parameter from the <see cref="Parameters"/> collection. 153=> Parameters.TryGetValue(key, out var obj) && obj is T value ? value : default; 156/// Set a parameter value in the <see cref="Parameters"/> collection. 162=> Parameters[key] = value;