AuthenticationTagMismatchException コンストラクター

定義

オーバーロード

AuthenticationTagMismatchException()

AuthenticationTagMismatchException クラスの新しいインスタンスを、既定のプロパティを使用して初期化します。

AuthenticationTagMismatchException(String)

指定したエラー メッセージを使用して、AuthenticationTagMismatchException クラスの新しいインスタンスを初期化します。

AuthenticationTagMismatchException(String, Exception)

指定したエラー メッセージおよびこの例外の原因となった内部例外への参照を使用して、AuthenticationTagMismatchException クラスの新しいインスタンスを初期化します。

AuthenticationTagMismatchException()

ソース:
AuthenticationTagMismatchException.cs
ソース:
AuthenticationTagMismatchException.cs

AuthenticationTagMismatchException クラスの新しいインスタンスを、既定のプロパティを使用して初期化します。

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

適用対象

AuthenticationTagMismatchException(String)

ソース:
AuthenticationTagMismatchException.cs
ソース:
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)

ソース:
AuthenticationTagMismatchException.cs
ソース:
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 ブロックで現在の例外が発生します。

適用対象