OAuthChallengeProperties Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
OAuthChallengeProperties() |
Initializes a new instance of OAuthChallengeProperties. |
OAuthChallengeProperties(IDictionary<String,String>) |
Initializes a new instance of OAuthChallengeProperties. |
OAuthChallengeProperties(IDictionary<String,String>, IDictionary<String,Object>) |
Initializes a new instance of OAuthChallengeProperties. |
OAuthChallengeProperties()
- Source:
- OAuthChallengeProperties.cs
- Source:
- OAuthChallengeProperties.cs
- Source:
- OAuthChallengeProperties.cs
Initializes a new instance of OAuthChallengeProperties.
public:
OAuthChallengeProperties();
public OAuthChallengeProperties ();
Public Sub New ()
Applies to
OAuthChallengeProperties(IDictionary<String,String>)
- Source:
- OAuthChallengeProperties.cs
- Source:
- OAuthChallengeProperties.cs
- Source:
- OAuthChallengeProperties.cs
Initializes a new instance of OAuthChallengeProperties.
public:
OAuthChallengeProperties(System::Collections::Generic::IDictionary<System::String ^, System::String ^> ^ items);
public OAuthChallengeProperties (System.Collections.Generic.IDictionary<string,string> items);
public OAuthChallengeProperties (System.Collections.Generic.IDictionary<string,string?> items);
new Microsoft.AspNetCore.Authentication.OAuth.OAuthChallengeProperties : System.Collections.Generic.IDictionary<string, string> -> Microsoft.AspNetCore.Authentication.OAuth.OAuthChallengeProperties
Public Sub New (items As IDictionary(Of String, String))
Parameters
- items
- IDictionary<String,String>
State values dictionary to use.
Applies to
OAuthChallengeProperties(IDictionary<String,String>, IDictionary<String,Object>)
- Source:
- OAuthChallengeProperties.cs
- Source:
- OAuthChallengeProperties.cs
- Source:
- OAuthChallengeProperties.cs
Initializes a new instance of OAuthChallengeProperties.
public:
OAuthChallengeProperties(System::Collections::Generic::IDictionary<System::String ^, System::String ^> ^ items, System::Collections::Generic::IDictionary<System::String ^, System::Object ^> ^ parameters);
public OAuthChallengeProperties (System.Collections.Generic.IDictionary<string,string> items, System.Collections.Generic.IDictionary<string,object> parameters);
public OAuthChallengeProperties (System.Collections.Generic.IDictionary<string,string?>? items, System.Collections.Generic.IDictionary<string,object?>? parameters);
new Microsoft.AspNetCore.Authentication.OAuth.OAuthChallengeProperties : System.Collections.Generic.IDictionary<string, string> * System.Collections.Generic.IDictionary<string, obj> -> Microsoft.AspNetCore.Authentication.OAuth.OAuthChallengeProperties
Public Sub New (items As IDictionary(Of String, String), parameters As IDictionary(Of String, Object))
Parameters
- items
- IDictionary<String,String>
State values dictionary to use.
- parameters
- IDictionary<String,Object>
Parameters dictionary to use.