9 references to Properties
Microsoft.AspNetCore.Authentication (3)
TicketSerializer.cs (3)
132writer.Write(claim.Properties.Count); 134foreach (var property in claim.Properties) 246claim.Properties.Add(key, propertyValue);
Microsoft.AspNetCore.Authentication.OpenIdConnect (1)
UniqueJsonKeyClaimAction.cs (1)
49return c.Properties.TryGetValue(JwtSecurityTokenHandler.ShortClaimTypeProperty, out var shortType)
Microsoft.AspNetCore.Authentication.Test (4)
TicketSerializerTests.cs (4)
90claim.Properties.Add("property-1", "property-value"); 94claim.Properties.Add("property-2", null); 117var property1 = readClaim.Properties["property-1"]; 120var property2 = readClaim.Properties["property-2"];
System.Security.Claims (1)
System\Security\Claims\Claim.cs (1)
124Properties.Add(reader.ReadString(), reader.ReadString());