1 write to StateDataFormat
Microsoft.AspNetCore.Authentication.OAuth (1)
OAuthPostConfigureOptions.cs (1)
48options.StateDataFormat = new PropertiesDataFormat(dataProtector);
5 references to StateDataFormat
Microsoft.AspNetCore.Authentication.Google (1)
GoogleHandler.cs (1)
82queryStrings["state"] = Options.StateDataFormat.Protect(properties);
Microsoft.AspNetCore.Authentication.MicrosoftAccount (1)
MicrosoftAccountHandler.cs (1)
95var state = Options.StateDataFormat.Protect(properties);
Microsoft.AspNetCore.Authentication.OAuth (3)
OAuthHandler.cs (2)
69var properties = Options.StateDataFormat.Unprotect(state); 329parameters["state"] = Options.StateDataFormat.Protect(properties);
OAuthPostConfigureOptions.cs (1)
44if (options.StateDataFormat == null)