다음을 통해 공유


InstanceNotFoundException 생성자

정의

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

오버로드

InstanceNotFoundException()

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

InstanceNotFoundException(Guid)

지정한 식별자를 사용하여 InstanceNotFoundException 클래스의 새 인스턴스를 초기화합니다.

InstanceNotFoundException(String)

지정한 메시지를 사용하여 InstanceNotFoundException 클래스의 새 인스턴스를 초기화합니다.

InstanceNotFoundException(Guid, Exception)

지정된 식별자와 내부 예외를 사용하여 InstanceNotFoundException 클래스의 새 인스턴스를 초기화합니다.

InstanceNotFoundException(Guid, String)

지정된 식별자 및 메시지를 사용하여 InstanceNotFoundException 클래스의 새 인스턴스를 초기화합니다.

InstanceNotFoundException(SerializationInfo, StreamingContext)

serialize된 데이터를 사용하여 InstanceNotFoundException 클래스의 새 인스턴스를 초기화합니다.

InstanceNotFoundException(String, Exception)

지정된 메시지와 내부 예외를 사용하여 InstanceNotFoundException 클래스의 새 인스턴스를 초기화합니다.

InstanceNotFoundException(Guid, String, Exception)

지정된 식별자, 메시지 및 내부 예외를 사용하여 InstanceNotFoundException 클래스의 새 인스턴스를 초기화합니다.

InstanceNotFoundException()

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

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

적용 대상

InstanceNotFoundException(Guid)

지정한 식별자를 사용하여 InstanceNotFoundException 클래스의 새 인스턴스를 초기화합니다.

public:
 InstanceNotFoundException(Guid id);
public InstanceNotFoundException (Guid id);
new System.ServiceModel.Persistence.InstanceNotFoundException : Guid -> System.ServiceModel.Persistence.InstanceNotFoundException
Public Sub New (id As Guid)

매개 변수

id
Guid

이 인스턴스와 관련된 고유 식별자입니다.

적용 대상

InstanceNotFoundException(String)

지정한 메시지를 사용하여 InstanceNotFoundException 클래스의 새 인스턴스를 초기화합니다.

public:
 InstanceNotFoundException(System::String ^ message);
public InstanceNotFoundException (string message);
new System.ServiceModel.Persistence.InstanceNotFoundException : string -> System.ServiceModel.Persistence.InstanceNotFoundException
Public Sub New (message As String)

매개 변수

message
String

예외에 대한 이유를 설명하는 오류 메시지입니다.

적용 대상

InstanceNotFoundException(Guid, Exception)

지정된 식별자와 내부 예외를 사용하여 InstanceNotFoundException 클래스의 새 인스턴스를 초기화합니다.

public:
 InstanceNotFoundException(Guid id, Exception ^ innerException);
public InstanceNotFoundException (Guid id, Exception innerException);
new System.ServiceModel.Persistence.InstanceNotFoundException : Guid * Exception -> System.ServiceModel.Persistence.InstanceNotFoundException
Public Sub New (id As Guid, innerException As Exception)

매개 변수

id
Guid

이 인스턴스와 관련된 고유 식별자입니다.

innerException
Exception

Exception을 발생시킨 InstanceNotFoundException입니다.

적용 대상

InstanceNotFoundException(Guid, String)

지정된 식별자 및 메시지를 사용하여 InstanceNotFoundException 클래스의 새 인스턴스를 초기화합니다.

public:
 InstanceNotFoundException(Guid id, System::String ^ message);
public InstanceNotFoundException (Guid id, string message);
new System.ServiceModel.Persistence.InstanceNotFoundException : Guid * string -> System.ServiceModel.Persistence.InstanceNotFoundException
Public Sub New (id As Guid, message As String)

매개 변수

id
Guid

이 인스턴스와 관련된 고유 식별자입니다.

message
String

예외에 대한 이유를 설명하는 오류 메시지입니다.

적용 대상

InstanceNotFoundException(SerializationInfo, StreamingContext)

serialize된 데이터를 사용하여 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.ServiceModel.Persistence.InstanceNotFoundException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.ServiceModel.Persistence.InstanceNotFoundException
Protected Sub New (info As SerializationInfo, context As StreamingContext)

매개 변수

info
SerializationInfo

throw되는 예외에 대해 serialize된 개체 데이터를 보유하는 SerializationInfo입니다.

context
StreamingContext

소스 또는 대상에 대한 컨텍스트 정보를 포함하는 StreamingContext입니다.

적용 대상

InstanceNotFoundException(String, Exception)

지정된 메시지와 내부 예외를 사용하여 InstanceNotFoundException 클래스의 새 인스턴스를 초기화합니다.

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

매개 변수

message
String

예외에 대한 이유를 설명하는 오류 메시지입니다.

innerException
Exception

Exception을 발생시킨 InstanceNotFoundException입니다.

적용 대상

InstanceNotFoundException(Guid, String, Exception)

지정된 식별자, 메시지 및 내부 예외를 사용하여 InstanceNotFoundException 클래스의 새 인스턴스를 초기화합니다.

public:
 InstanceNotFoundException(Guid id, System::String ^ message, Exception ^ innerException);
public InstanceNotFoundException (Guid id, string message, Exception innerException);
new System.ServiceModel.Persistence.InstanceNotFoundException : Guid * string * Exception -> System.ServiceModel.Persistence.InstanceNotFoundException
Public Sub New (id As Guid, message As String, innerException As Exception)

매개 변수

id
Guid

이 인스턴스와 관련된 고유 식별자입니다.

message
String

예외에 대한 이유를 설명하는 오류 메시지입니다.

innerException
Exception

Exception을 발생시킨 InstanceNotFoundException입니다.

적용 대상