InstrumentationException 생성자

정의

InstrumentationException의 새 인스턴스를 초기화합니다. 이는 매개 변수가 없는 생성자입니다.

오버로드

InstrumentationException()

InstrumentationException 클래스의 새 인스턴스를 초기화합니다. 이는 매개 변수가 없는 생성자입니다.

InstrumentationException(Exception)

현재 예외를 발생시킨 System.Exception을 사용하여 새 InstrumentationException 클래스를 초기화합니다.

InstrumentationException(String)

InstrumentationException 클래스의 새 인스턴스를 예외를 설명하는 메시지로 초기화합니다.

InstrumentationException(SerializationInfo, StreamingContext)

serialization 정보를 사용하여 InstrumentationException 클래스의 새 인스턴스를 초기화합니다.

InstrumentationException(String, Exception)

지정된 문자열과 예외를 사용하여 새 InstrumentationException 클래스를 초기화합니다.

InstrumentationException()

InstrumentationException 클래스의 새 인스턴스를 초기화합니다. 이는 매개 변수가 없는 생성자입니다.

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

적용 대상

InstrumentationException(Exception)

현재 예외를 발생시킨 System.Exception을 사용하여 새 InstrumentationException 클래스를 초기화합니다.

public:
 InstrumentationException(Exception ^ innerException);
public InstrumentationException (Exception innerException);
new System.Management.Instrumentation.InstrumentationException : Exception -> System.Management.Instrumentation.InstrumentationException
Public Sub New (innerException As Exception)

매개 변수

innerException
Exception

현재 예외를 발생시킨 예외 인스턴스입니다.

적용 대상

InstrumentationException(String)

InstrumentationException 클래스의 새 인스턴스를 예외를 설명하는 메시지로 초기화합니다.

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

매개 변수

message
String

예외를 설명하는 메시지입니다.

적용 대상

InstrumentationException(SerializationInfo, StreamingContext)

serialization 정보를 사용하여 InstrumentationException 클래스의 새 인스턴스를 초기화합니다.

protected:
 InstrumentationException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected InstrumentationException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new System.Management.Instrumentation.InstrumentationException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Management.Instrumentation.InstrumentationException
Protected Sub New (info As SerializationInfo, context As StreamingContext)

매개 변수

info
SerializationInfo

개체를 직렬화 또는 역직렬화하는 데 필요한 데이터입니다.

context
StreamingContext

serialize된 특정 스트림의 소스 및 대상에 대한 설명입니다.

적용 대상

InstrumentationException(String, Exception)

지정된 문자열과 예외를 사용하여 새 InstrumentationException 클래스를 초기화합니다.

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

매개 변수

message
String

예외를 설명하는 메시지입니다.

innerException
Exception

현재 예외를 발생시킨 예외 인스턴스입니다.

적용 대상