IdentityNotMappedException コンストラクター

定義

IdentityNotMappedException クラスの新しいインスタンスを初期化します。

オーバーロード

IdentityNotMappedException()

IdentityNotMappedException クラスの新しいインスタンスを初期化します。

IdentityNotMappedException(String)

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

IdentityNotMappedException(String, Exception)

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

IdentityNotMappedException()

IdentityNotMappedException クラスの新しいインスタンスを初期化します。

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

適用対象

IdentityNotMappedException(String)

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

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

パラメーター

message
String

例外の原因を説明するエラー メッセージ。

適用対象

IdentityNotMappedException(String, Exception)

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

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

パラメーター

message
String

例外の原因を説明するエラー メッセージ。

inner
Exception

現在の例外の原因となった例外。 inner が null でない場合は、内部例外を処理する catch ブロックで現在の例外が発生します。

適用対象