AuthenticationTagMismatchException 构造函数

定义

重载

AuthenticationTagMismatchException()

使用默认属性初始化 AuthenticationTagMismatchException 类的新实例。

AuthenticationTagMismatchException(String)

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

AuthenticationTagMismatchException(String, Exception)

使用指定的错误消息和对作为此异常原因的内部异常的引用来初始化 AuthenticationTagMismatchException 类的新实例。

AuthenticationTagMismatchException()

Source:
AuthenticationTagMismatchException.cs
Source:
AuthenticationTagMismatchException.cs

使用默认属性初始化 AuthenticationTagMismatchException 类的新实例。

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

适用于

AuthenticationTagMismatchException(String)

Source:
AuthenticationTagMismatchException.cs
Source:
AuthenticationTagMismatchException.cs

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

public:
 AuthenticationTagMismatchException(System::String ^ message);
public AuthenticationTagMismatchException (string? message);
new System.Security.Cryptography.AuthenticationTagMismatchException : string -> System.Security.Cryptography.AuthenticationTagMismatchException
Public Sub New (message As String)

参数

message
String

解释异常原因的错误消息。

适用于

AuthenticationTagMismatchException(String, Exception)

Source:
AuthenticationTagMismatchException.cs
Source:
AuthenticationTagMismatchException.cs

使用指定的错误消息和对作为此异常原因的内部异常的引用来初始化 AuthenticationTagMismatchException 类的新实例。

public:
 AuthenticationTagMismatchException(System::String ^ message, Exception ^ inner);
public AuthenticationTagMismatchException (string? message, Exception? inner);
new System.Security.Cryptography.AuthenticationTagMismatchException : string * Exception -> System.Security.Cryptography.AuthenticationTagMismatchException
Public Sub New (message As String, inner As Exception)

参数

message
String

解释异常原因的错误消息。

inner
Exception

导致当前异常的异常。 如果 参数不是 null,则当前异常在处理内部异常的 catch 块中引发。

适用于