InstanceNotFoundException 构造函数
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
初始化 InstanceNotFoundException 类的一个新示例。
重载
InstanceNotFoundException() |
初始化 InstanceNotFoundException 类的一个新示例。 |
InstanceNotFoundException(String) |
使用设置为 message 的消息字符串初始化 InstanceNotFoundException 类的一个新实例。 |
InstanceNotFoundException(SerializationInfo, StreamingContext) |
使用指定的序列化信息和流上下文,初始化 InstanceNotFoundException 类的一个新实例。 |
InstanceNotFoundException(String, Exception) |
使用指定的错误消息和内部异常,初始化 InstanceNotFoundException 类的一个新实例。 |
InstanceNotFoundException()
初始化 InstanceNotFoundException 类的一个新示例。
public:
InstanceNotFoundException();
public InstanceNotFoundException ();
Public Sub New ()
适用于
InstanceNotFoundException(String)
使用设置为 message 的消息字符串初始化 InstanceNotFoundException 类的一个新实例。
public:
InstanceNotFoundException(System::String ^ message);
public InstanceNotFoundException (string message);
new System.Management.Instrumentation.InstanceNotFoundException : string -> System.Management.Instrumentation.InstanceNotFoundException
Public Sub New (message As String)
参数
- message
- String
一个字符串,它包含对异常原因进行解释的错误消息。
适用于
InstanceNotFoundException(SerializationInfo, StreamingContext)
使用指定的序列化信息和流上下文,初始化 InstanceNotFoundException 类的一个新实例。
protected:
InstanceNotFoundException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected InstanceNotFoundException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new System.Management.Instrumentation.InstanceNotFoundException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Management.Instrumentation.InstanceNotFoundException
Protected Sub New (info As SerializationInfo, context As StreamingContext)
参数
- info
- SerializationInfo
包含序列化异常所需的所有数据的 SerializationInfo。
- context
- StreamingContext
StreamingContext,指示流的源和目标。
适用于
InstanceNotFoundException(String, Exception)
使用指定的错误消息和内部异常,初始化 InstanceNotFoundException 类的一个新实例。
public:
InstanceNotFoundException(System::String ^ message, Exception ^ innerException);
public InstanceNotFoundException (string message, Exception innerException);
new System.Management.Instrumentation.InstanceNotFoundException : string * Exception -> System.Management.Instrumentation.InstanceNotFoundException
Public Sub New (message As String, innerException As Exception)
参数
- message
- String
一个字符串,它包含对异常原因进行解释的错误消息。
- innerException
- Exception
导致引发当前异常的“Exception”。