EncryptedTokenDecryptionFailedException Constructors

Definition

Initializes a new instance of the EncryptedTokenDecryptionFailedException class.

Overloads

EncryptedTokenDecryptionFailedException()

Initializes a new instance of the EncryptedTokenDecryptionFailedException class.

EncryptedTokenDecryptionFailedException(String)

Initializes a new instance of the EncryptedTokenDecryptionFailedException class using the specified error message.

EncryptedTokenDecryptionFailedException(SerializationInfo, StreamingContext)

Initializes a new instance of the EncryptedTokenDecryptionFailedException class using the specified XML serialization data and contextual data about the source and destination of the serialization stream.

EncryptedTokenDecryptionFailedException(String, Exception)

Initializes a new instance of the EncryptedTokenDecryptionFailedException class using the specified error message and root cause of the error.

EncryptedTokenDecryptionFailedException()

Initializes a new instance of the EncryptedTokenDecryptionFailedException class.

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

Applies to

EncryptedTokenDecryptionFailedException(String)

Initializes a new instance of the EncryptedTokenDecryptionFailedException class using the specified error message.

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

Parameters

message
String

A message that identifies the reason the exception occurred.

Applies to

EncryptedTokenDecryptionFailedException(SerializationInfo, StreamingContext)

Initializes a new instance of the EncryptedTokenDecryptionFailedException class using the specified XML serialization data and contextual data about the source and destination of the serialization stream.

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

Parameters

info
SerializationInfo

A SerializationInfo that contains values that are used during serialization and deserialization.

context
StreamingContext

A SecurityTokenException that contains data about the source and destination of the serialization stream.

Applies to

EncryptedTokenDecryptionFailedException(String, Exception)

Initializes a new instance of the EncryptedTokenDecryptionFailedException class using the specified error message and root cause of the error.

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

Parameters

message
String

A message that identifies the reason the exception occurred.

inner
Exception

A Exception that represents the root cause of the exception.

Applies to