8 writes to StateDataFormat
Microsoft.AspNetCore.Authentication.OpenIdConnect (1)
OpenIdConnectPostConfigureOptions.cs (1)
49
options.
StateDataFormat
= new PropertiesDataFormat(dataProtector);
Microsoft.AspNetCore.Authentication.Test (7)
OpenIdConnect\OpenIdConnectAuthenticateTests.cs (1)
73
opt.
StateDataFormat
= new TestStateDataFormat();
OpenIdConnect\OpenIdConnectChallengeTests.cs (2)
187
o.
StateDataFormat
= stateFormat;
215
opt.
StateDataFormat
= stateFormat;
OpenIdConnect\OpenIdConnectEventTests.cs (1)
1288
o.
StateDataFormat
= new TestStateDataFormat();
OpenIdConnect\OpenIdConnectEventTests_Handler.cs (1)
1288
o.
StateDataFormat
= new TestStateDataFormat();
OpenIdConnect\OpenIdConnectTests.cs (2)
234
o.
StateDataFormat
= stateFormat;
264
o.
StateDataFormat
= stateFormat;
5 references to StateDataFormat
Microsoft.AspNetCore.Authentication.OpenIdConnect (5)
OpenIdConnectHandler.cs (4)
268
message.State = Options.
StateDataFormat
.Protect(properties);
322
properties = Options.
StateDataFormat
.Unprotect(message.State);
480
message.State = Options.
StateDataFormat
.Protect(properties);
957
properties = Options.
StateDataFormat
.Unprotect(message.State);
OpenIdConnectPostConfigureOptions.cs (1)
45
if (options.
StateDataFormat
== null)