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
块中引发。