OpenIdConnectMessage 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
OpenIdConnectMessage() |
Initializes a new instance of the OpenIdConnectMessage class. |
OpenIdConnectMessage(OpenIdConnectMessage) |
Initializes a new instance of the OpenIdConnectMessage class. |
OpenIdConnectMessage(IEnumerable<KeyValuePair<String,String[]>>) |
Initializes a new instance of the OpenIdConnectMessage class. |
OpenIdConnectMessage(NameValueCollection) |
Initializes a new instance of the OpenIdConnectMessage class. |
OpenIdConnectMessage(String) |
Initializes a new instance of OpenIdConnectMessage class with a json string. |
OpenIdConnectMessage()
Initializes a new instance of the OpenIdConnectMessage class.
public OpenIdConnectMessage ();
Public Sub New ()
Applies to
OpenIdConnectMessage(OpenIdConnectMessage)
Initializes a new instance of the OpenIdConnectMessage class.
protected OpenIdConnectMessage (Microsoft.IdentityModel.Protocols.OpenIdConnect.OpenIdConnectMessage other);
new Microsoft.IdentityModel.Protocols.OpenIdConnect.OpenIdConnectMessage : Microsoft.IdentityModel.Protocols.OpenIdConnect.OpenIdConnectMessage -> Microsoft.IdentityModel.Protocols.OpenIdConnect.OpenIdConnectMessage
Protected Sub New (other As OpenIdConnectMessage)
Parameters
- other
- OpenIdConnectMessage
an OpenIdConnectMessage to copy.
Exceptions
Thrown if other
is null.
Applies to
OpenIdConnectMessage(IEnumerable<KeyValuePair<String,String[]>>)
Initializes a new instance of the OpenIdConnectMessage class.
public OpenIdConnectMessage (System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string,string[]>> parameters);
new Microsoft.IdentityModel.Protocols.OpenIdConnect.OpenIdConnectMessage : seq<System.Collections.Generic.KeyValuePair<string, string[]>> -> Microsoft.IdentityModel.Protocols.OpenIdConnect.OpenIdConnectMessage
Public Sub New (parameters As IEnumerable(Of KeyValuePair(Of String, String())))
Parameters
- parameters
- IEnumerable<KeyValuePair<String,String[]>>
Enumeration of key value pairs.
Applies to
OpenIdConnectMessage(NameValueCollection)
Initializes a new instance of the OpenIdConnectMessage class.
public OpenIdConnectMessage (System.Collections.Specialized.NameValueCollection nameValueCollection);
new Microsoft.IdentityModel.Protocols.OpenIdConnect.OpenIdConnectMessage : System.Collections.Specialized.NameValueCollection -> Microsoft.IdentityModel.Protocols.OpenIdConnect.OpenIdConnectMessage
Public Sub New (nameValueCollection As NameValueCollection)
Parameters
- nameValueCollection
- NameValueCollection
Collection of key value pairs.
Applies to
OpenIdConnectMessage(String)
Initializes a new instance of OpenIdConnectMessage class with a json string.
public OpenIdConnectMessage (string json);
new Microsoft.IdentityModel.Protocols.OpenIdConnect.OpenIdConnectMessage : string -> Microsoft.IdentityModel.Protocols.OpenIdConnect.OpenIdConnectMessage
Public Sub New (json As String)
Parameters
- json
- String