ManagementException 构造函数

定义

初始化 ManagementException 类的新实例。

重载

ManagementException()

初始化 ManagementException 类的新实例。

ManagementException(String)

用指定的错误消息初始化 ManagementException 类的新实例。

ManagementException(SerializationInfo, StreamingContext)
已过时.

初始化 ManagementException 类的可序列化的新实例。

ManagementException(String, Exception)

初始化 ManagementException 类的空的新实例。 如果 innerException 参数不为 null,则当前异常在处理内部异常的 catch 块中引发。

ManagementException()

Source:
ManagementException.cs
Source:
ManagementException.cs
Source:
ManagementException.cs

初始化 ManagementException 类的新实例。

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

注解

.NET Framework 安全性

对直接调用方的完全信任。 此成员不能由部分信任的代码使用。 有关详细信息,请参阅 使用部分受信任的代码中的库

适用于

ManagementException(String)

Source:
ManagementException.cs
Source:
ManagementException.cs
Source:
ManagementException.cs

用指定的错误消息初始化 ManagementException 类的新实例。

public:
 ManagementException(System::String ^ message);
public ManagementException (string message);
new System.Management.ManagementException : string -> System.Management.ManagementException
Public Sub New (message As String)

参数

message
String

描述错误的消息。

适用于

ManagementException(SerializationInfo, StreamingContext)

Source:
ManagementException.cs
Source:
ManagementException.cs
Source:
ManagementException.cs

注意

This API supports obsolete formatter-based serialization. It should not be called or extended by application code.

初始化 ManagementException 类的可序列化的新实例。

protected:
 ManagementException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected ManagementException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
[System.Obsolete("This API supports obsolete formatter-based serialization. It should not be called or extended by application code.", DiagnosticId="SYSLIB0051", UrlFormat="https://aka.ms/dotnet-warnings/{0}")]
protected ManagementException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new System.Management.ManagementException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Management.ManagementException
[<System.Obsolete("This API supports obsolete formatter-based serialization. It should not be called or extended by application code.", DiagnosticId="SYSLIB0051", UrlFormat="https://aka.ms/dotnet-warnings/{0}")>]
new System.Management.ManagementException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Management.ManagementException
Protected Sub New (info As SerializationInfo, context As StreamingContext)

参数

info
SerializationInfo

要填充数据的 SerializationInfo

context
StreamingContext

此序列化的 StreamingContext 目标。

属性

注解

.NET Framework 安全性

对直接调用方的完全信任。 此成员不能由部分信任的代码使用。 有关详细信息,请参阅 使用部分受信任的代码中的库

适用于

ManagementException(String, Exception)

Source:
ManagementException.cs
Source:
ManagementException.cs
Source:
ManagementException.cs

初始化 ManagementException 类的空的新实例。 如果 innerException 参数不为 null,则当前异常在处理内部异常的 catch 块中引发。

public:
 ManagementException(System::String ^ message, Exception ^ innerException);
public ManagementException (string message, Exception innerException);
new System.Management.ManagementException : string * Exception -> System.Management.ManagementException
Public Sub New (message As String, innerException As Exception)

参数

message
String

描述错误的消息。

innerException
Exception

导致当前异常的异常。

注解

.NET Framework 安全性

对直接调用方的完全信任。 此成员不能由部分信任的代码使用。 有关详细信息,请参阅 使用部分受信任的代码中的库

适用于