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);
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);
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 引发。