8 instantiations of OpenIdConnectChallengeProperties
Microsoft.AspNetCore.Authentication.Test (7)
OAuthChallengePropertiesTest.cs (4)
46var properties = new OpenIdConnectChallengeProperties() 56var properties = new OpenIdConnectChallengeProperties(); 67var properties = new OpenIdConnectChallengeProperties() 78var properties = new OpenIdConnectChallengeProperties();
OpenIdConnect\OpenIdConnectChallengeTests.cs (3)
546var properties = new OpenIdConnectChallengeProperties() 594var properties = new OpenIdConnectChallengeProperties(); 640var properties = new OpenIdConnectChallengeProperties()
OpenIdConnectSample (1)
Startup.cs (1)
298await context.ChallengeAsync(OpenIdConnectDefaults.AuthenticationScheme, new OpenIdConnectChallengeProperties()
13 references to OpenIdConnectChallengeProperties
Microsoft.AspNetCore.Authentication.OpenIdConnect (3)
OpenIdConnectChallengeProperties.cs (3)
25/// Initializes a new instance of <see cref="OpenIdConnectChallengeProperties"/>. 31/// Initializes a new instance of <see cref="OpenIdConnectChallengeProperties"/>. 39/// Initializes a new instance of <see cref="OpenIdConnectChallengeProperties"/>.
Microsoft.AspNetCore.Authentication.Test (10)
OAuthChallengePropertiesTest.cs (4)
46var properties = new OpenIdConnectChallengeProperties() 56var properties = new OpenIdConnectChallengeProperties(); 67var properties = new OpenIdConnectChallengeProperties() 78var properties = new OpenIdConnectChallengeProperties();
OpenIdConnect\OpenIdConnectChallengeTests.cs (6)
546var properties = new OpenIdConnectChallengeProperties() 571properties.SetParameter(OpenIdConnectChallengeProperties.PromptKey, "login"); 594var properties = new OpenIdConnectChallengeProperties(); 619properties.SetParameter(OpenIdConnectChallengeProperties.ScopeKey, new string[] { "baz", "qux" }); 640var properties = new OpenIdConnectChallengeProperties() 665properties.SetParameter(OpenIdConnectChallengeProperties.MaxAgeKey, TimeSpan.FromSeconds(1234));