OpenIdConnectMessage Constructors

Definition

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 an 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

Exceptions

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 an 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

Applies to