다음을 통해 공유


InstanceNotFoundException 생성자

정의

InstanceNotFoundException 클래스의 새 인스턴스를 초기화합니다.

오버로드

InstanceNotFoundException()

InstanceNotFoundException 클래스의 새 인스턴스를 초기화합니다.

InstanceNotFoundException(String)

message에 설정된 메시지 문자열을 사용하여 InstanceNotFoundException 클래스의 새 인스턴스를 초기화합니다.

InstanceNotFoundException(SerializationInfo, StreamingContext)

지정된 serialization 정보 및 스트리밍 컨텍스트를 사용하여 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)

지정된 serialization 정보 및 스트리밍 컨텍스트를 사용하여 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

예외를 serialize하는 데 필요한 모든 데이터를 포함하는 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

현재 예외가 throw된 원인이 되는 예외입니다.

적용 대상