FederatedAuthenticationSessionEndingException Constructors

Definition

Initializes a new instance of the FederatedAuthenticationSessionEndingException class.

Overloads

FederatedAuthenticationSessionEndingException()

Initializes a new instance of FederatedAuthenticationSessionEndingException.

FederatedAuthenticationSessionEndingException(String)

Initializes a new instance of the FederatedAuthenticationSessionEndingException class with a specified error message.

FederatedAuthenticationSessionEndingException(SerializationInfo, StreamingContext)

Initializes a new instance of the FederatedAuthenticationSessionEndingException class with serialized data.

FederatedAuthenticationSessionEndingException(String, Exception)

Initializes a new instance of the FederatedAuthenticationSessionEndingException class with a specified error message and a reference to the inner exception that is the cause of this exception.

FederatedAuthenticationSessionEndingException()

Initializes a new instance of FederatedAuthenticationSessionEndingException.

public:
 FederatedAuthenticationSessionEndingException();
public FederatedAuthenticationSessionEndingException ();
Public Sub New ()

Applies to

FederatedAuthenticationSessionEndingException(String)

Initializes a new instance of the FederatedAuthenticationSessionEndingException class with a specified error message.

public:
 FederatedAuthenticationSessionEndingException(System::String ^ message);
public FederatedAuthenticationSessionEndingException (string message);
new System.IdentityModel.Services.FederatedAuthenticationSessionEndingException : string -> System.IdentityModel.Services.FederatedAuthenticationSessionEndingException
Public Sub New (message As String)

Parameters

message
String

The message that describes the error.

Applies to

FederatedAuthenticationSessionEndingException(SerializationInfo, StreamingContext)

Initializes a new instance of the FederatedAuthenticationSessionEndingException class with serialized data.

protected:
 FederatedAuthenticationSessionEndingException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected FederatedAuthenticationSessionEndingException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new System.IdentityModel.Services.FederatedAuthenticationSessionEndingException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.IdentityModel.Services.FederatedAuthenticationSessionEndingException
Protected Sub New (info As SerializationInfo, context As StreamingContext)

Parameters

info
SerializationInfo

The SerializationInfo that holds the serialized object data about the exception being thrown.

context
StreamingContext

The StreamingContext that contains contextual information about the source or destination.

Applies to

FederatedAuthenticationSessionEndingException(String, Exception)

Initializes a new instance of the FederatedAuthenticationSessionEndingException class with a specified error message and a reference to the inner exception that is the cause of this exception.

public:
 FederatedAuthenticationSessionEndingException(System::String ^ message, Exception ^ inner);
public FederatedAuthenticationSessionEndingException (string message, Exception inner);
new System.IdentityModel.Services.FederatedAuthenticationSessionEndingException : string * Exception -> System.IdentityModel.Services.FederatedAuthenticationSessionEndingException
Public Sub New (message As String, inner As Exception)

Parameters

message
String

The message that describes the error.

inner
Exception

The exception that is the cause of the current exception, or null if no inner exception is specified.

Applies to