AuthenticationProperties 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
AuthenticationProperties() |
Initializes a new instance of the AuthenticationProperties class. |
AuthenticationProperties(IDictionary<String,String>) |
Initializes a new instance of the AuthenticationProperties class. |
AuthenticationProperties(IDictionary<String,String>, IDictionary<String,Object>) |
Initializes a new instance of the AuthenticationProperties class. |
AuthenticationProperties()
- Source:
- AuthenticationProperties.cs
- Source:
- AuthenticationProperties.cs
- Source:
- AuthenticationProperties.cs
Initializes a new instance of the AuthenticationProperties class.
public:
AuthenticationProperties();
public AuthenticationProperties ();
Public Sub New ()
Applies to
AuthenticationProperties(IDictionary<String,String>)
- Source:
- AuthenticationProperties.cs
- Source:
- AuthenticationProperties.cs
- Source:
- AuthenticationProperties.cs
Initializes a new instance of the AuthenticationProperties class.
public:
AuthenticationProperties(System::Collections::Generic::IDictionary<System::String ^, System::String ^> ^ items);
public AuthenticationProperties (System.Collections.Generic.IDictionary<string,string> items);
public AuthenticationProperties (System.Collections.Generic.IDictionary<string,string?> items);
[System.Text.Json.Serialization.JsonConstructor]
public AuthenticationProperties (System.Collections.Generic.IDictionary<string,string?> items);
new Microsoft.AspNetCore.Authentication.AuthenticationProperties : System.Collections.Generic.IDictionary<string, string> -> Microsoft.AspNetCore.Authentication.AuthenticationProperties
[<System.Text.Json.Serialization.JsonConstructor>]
new Microsoft.AspNetCore.Authentication.AuthenticationProperties : System.Collections.Generic.IDictionary<string, string> -> Microsoft.AspNetCore.Authentication.AuthenticationProperties
Public Sub New (items As IDictionary(Of String, String))
Parameters
- items
- IDictionary<String,String>
State values dictionary to use.
- Attributes
Applies to
AuthenticationProperties(IDictionary<String,String>, IDictionary<String,Object>)
- Source:
- AuthenticationProperties.cs
- Source:
- AuthenticationProperties.cs
- Source:
- AuthenticationProperties.cs
Initializes a new instance of the AuthenticationProperties class.
public:
AuthenticationProperties(System::Collections::Generic::IDictionary<System::String ^, System::String ^> ^ items, System::Collections::Generic::IDictionary<System::String ^, System::Object ^> ^ parameters);
public AuthenticationProperties (System.Collections.Generic.IDictionary<string,string> items, System.Collections.Generic.IDictionary<string,object> parameters);
public AuthenticationProperties (System.Collections.Generic.IDictionary<string,string?>? items, System.Collections.Generic.IDictionary<string,object?>? parameters);
new Microsoft.AspNetCore.Authentication.AuthenticationProperties : System.Collections.Generic.IDictionary<string, string> * System.Collections.Generic.IDictionary<string, obj> -> Microsoft.AspNetCore.Authentication.AuthenticationProperties
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.