AuthenticationTagMismatchException 构造函数
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
AuthenticationTagMismatchException() |
使用默认属性初始化 AuthenticationTagMismatchException 类的新实例。 |
AuthenticationTagMismatchException(String) |
用指定的错误消息初始化 AuthenticationTagMismatchException 类的新实例。 |
AuthenticationTagMismatchException(String, Exception) |
使用指定的错误消息和对作为此异常原因的内部异常的引用来初始化 AuthenticationTagMismatchException 类的新实例。 |
AuthenticationTagMismatchException()
使用默认属性初始化 AuthenticationTagMismatchException 类的新实例。
public:
AuthenticationTagMismatchException();
public AuthenticationTagMismatchException ();
Public Sub New ()
适用于
AuthenticationTagMismatchException(String)
用指定的错误消息初始化 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)
使用指定的错误消息和对作为此异常原因的内部异常的引用来初始化 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 块中引发。