3 types derived from OAuthChallengeProperties
Microsoft.AspNetCore.Authentication.Google (1)
GoogleChallengeProperties.cs (1)
11public class GoogleChallengeProperties : OAuthChallengeProperties
Microsoft.AspNetCore.Authentication.MicrosoftAccount (1)
MicrosoftChallengeProperties.cs (1)
12public class MicrosoftChallengeProperties : OAuthChallengeProperties
Microsoft.AspNetCore.Authentication.OpenIdConnect (1)
OpenIdConnectChallengeProperties.cs (1)
12public class OpenIdConnectChallengeProperties : OAuthChallengeProperties
6 instantiations of OAuthChallengeProperties
Microsoft.AspNetCore.Authentication.Test (6)
FacebookTests.cs (1)
163var properties = new OAuthChallengeProperties();
MicrosoftAccountTests.cs (1)
382var properties = new OAuthChallengeProperties();
OAuthChallengePropertiesTest.cs (3)
15var properties = new OAuthChallengeProperties 26var properties = new OAuthChallengeProperties(); 37var properties = new OAuthChallengeProperties();
OAuthTests.cs (1)
237var properties = new OAuthChallengeProperties();
13 references to OAuthChallengeProperties
Microsoft.AspNetCore.Authentication.OAuth (4)
OAuthChallengeProperties.cs (3)
17/// Initializes a new instance of <see cref="OAuthChallengeProperties"/>. 23/// Initializes a new instance of <see cref="OAuthChallengeProperties" />. 31/// Initializes a new instance of <see cref="OAuthChallengeProperties" />.
OAuthHandler.cs (1)
302var scopeParameter = properties.GetParameter<ICollection<string>>(OAuthChallengeProperties.ScopeKey);
Microsoft.AspNetCore.Authentication.Test (9)
FacebookTests.cs (2)
163var properties = new OAuthChallengeProperties(); 196properties.SetParameter(OAuthChallengeProperties.ScopeKey, new string[] { "baz", "qux" });
MicrosoftAccountTests.cs (2)
382var properties = new OAuthChallengeProperties(); 389properties.SetParameter(OAuthChallengeProperties.ScopeKey, new string[] { "baz", "qux" });
OAuthChallengePropertiesTest.cs (3)
15var properties = new OAuthChallengeProperties 26var properties = new OAuthChallengeProperties(); 37var properties = new OAuthChallengeProperties();
OAuthTests.cs (2)
237var properties = new OAuthChallengeProperties(); 267properties.SetParameter(OAuthChallengeProperties.ScopeKey, new string[] { "baz", "qux" });