2 instantiations of PropertiesSerializer
Microsoft.AspNetCore.Authentication (2)
PropertiesDataFormat.cs (1)
19: base(new PropertiesSerializer(), protector)
PropertiesSerializer.cs (1)
16public static PropertiesSerializer Default { get; } = new PropertiesSerializer();
6 references to PropertiesSerializer
Microsoft.AspNetCore.Authentication (4)
PropertiesSerializer.cs (2)
14/// Gets the default instance of <see cref="PropertiesSerializer"/>. 16public static PropertiesSerializer Default { get; } = new PropertiesSerializer();
TicketSerializer.cs (2)
70PropertiesSerializer.Default.Write(writer, ticket.Properties); 171var properties = PropertiesSerializer.Default.Read(reader);
Microsoft.AspNetCore.Authentication.Twitter (2)
Messages\RequestTokenSerializer.cs (2)
61PropertiesSerializer.Default.Write(writer, token.Properties); 81AuthenticationProperties? properties = PropertiesSerializer.Default.Read(reader);