IdentityNotMappedException 建構函式
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
初始化 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
區塊中引發。