EncryptedTokenDecryptionFailedException 构造函数

定义

初始化 EncryptedTokenDecryptionFailedException 类的新实例。

重载

EncryptedTokenDecryptionFailedException()

初始化 EncryptedTokenDecryptionFailedException 类的新实例。

EncryptedTokenDecryptionFailedException(String)

使用指定的错误消息初始化 EncryptedTokenDecryptionFailedException 类的新实例。

EncryptedTokenDecryptionFailedException(SerializationInfo, StreamingContext)

使用指定的 XML 序列化数据和有关序列化流的源和目标的上下文数据来初始化 EncryptedTokenDecryptionFailedException 类的新实例。

EncryptedTokenDecryptionFailedException(String, Exception)

使用指定的错误消息和错误的根源初始化 EncryptedTokenDecryptionFailedException 类的新实例。

EncryptedTokenDecryptionFailedException()

初始化 EncryptedTokenDecryptionFailedException 类的新实例。

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

适用于

EncryptedTokenDecryptionFailedException(String)

使用指定的错误消息初始化 EncryptedTokenDecryptionFailedException 类的新实例。

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)

参数

message
String

一个标识异常发生原因的消息。

适用于

EncryptedTokenDecryptionFailedException(SerializationInfo, StreamingContext)

使用指定的 XML 序列化数据和有关序列化流的源和目标的上下文数据来初始化 EncryptedTokenDecryptionFailedException 类的新实例。

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)

参数

info
SerializationInfo

一个 SerializationInfo,包含在序列化和反序列化过程中使用的值。

context
StreamingContext

一个 SecurityTokenException,包含有关序列化流的源和目标的数据。

适用于

EncryptedTokenDecryptionFailedException(String, Exception)

使用指定的错误消息和错误的根源初始化 EncryptedTokenDecryptionFailedException 类的新实例。

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)

参数

message
String

一个标识异常发生原因的消息。

inner
Exception

一个 Exception,表示异常的根源。

适用于