InstancePersistenceException 생성자

정의

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

오버로드

InstancePersistenceException()

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

InstancePersistenceException(String)

오류 메시지를 사용하여 InstancePersistenceException 클래스의 인스턴스를 초기화합니다.

InstancePersistenceException(XName)

명령 이름을 사용하여 InstancePersistenceException 클래스의 인스턴스를 초기화합니다.

InstancePersistenceException(SerializationInfo, StreamingContext)

serialize된 정보와 컨텍스트 정보를 사용하여 InstancePersistenceException 클래스의 인스턴스를 초기화합니다.

InstancePersistenceException(String, Exception)

오류 메시지와 내부 예외 정보를 사용하여 InstancePersistenceException 클래스의 인스턴스를 초기화합니다.

InstancePersistenceException(XName, Exception)

명령 이름과 내부 예외 정보를 사용하여 InstancePersistenceException 클래스의 인스턴스를 초기화합니다.

InstancePersistenceException(XName, String)

명령 이름과 오류 메시지를 사용하여 InstancePersistenceException 클래스의 인스턴스를 초기화합니다.

InstancePersistenceException(XName, String, Exception)

명령 이름, 오류 메시지 및 내부 예외 정보를 사용하여 InstancePersistenceException 클래스의 인스턴스를 초기화합니다.

InstancePersistenceException()

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

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

적용 대상

InstancePersistenceException(String)

오류 메시지를 사용하여 InstancePersistenceException 클래스의 인스턴스를 초기화합니다.

public:
 InstancePersistenceException(System::String ^ message);
public InstancePersistenceException (string message);
new System.Runtime.DurableInstancing.InstancePersistenceException : string -> System.Runtime.DurableInstancing.InstancePersistenceException
Public Sub New (message As String)

매개 변수

message
String

현재 예외를 설명하는 오류 메시지입니다.

적용 대상

InstancePersistenceException(XName)

명령 이름을 사용하여 InstancePersistenceException 클래스의 인스턴스를 초기화합니다.

public:
 InstancePersistenceException(System::Xml::Linq::XName ^ commandName);
public InstancePersistenceException (System.Xml.Linq.XName commandName);
new System.Runtime.DurableInstancing.InstancePersistenceException : System.Xml.Linq.XName -> System.Runtime.DurableInstancing.InstancePersistenceException
Public Sub New (commandName As XName)

매개 변수

commandName
XName

명령의 XName(네임스페이스와 이름의 조합)입니다.

적용 대상

InstancePersistenceException(SerializationInfo, StreamingContext)

serialize된 정보와 컨텍스트 정보를 사용하여 InstancePersistenceException 클래스의 인스턴스를 초기화합니다.

protected:
 InstancePersistenceException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
[System.Security.SecurityCritical]
protected InstancePersistenceException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
[<System.Security.SecurityCritical>]
new System.Runtime.DurableInstancing.InstancePersistenceException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Runtime.DurableInstancing.InstancePersistenceException
Protected Sub New (info As SerializationInfo, context As StreamingContext)

매개 변수

info
SerializationInfo

현재 예외에 대한 정보입니다.

context
StreamingContext

원본 또는 대상에 대한 컨텍스트 정보입니다.

특성

적용 대상

InstancePersistenceException(String, Exception)

오류 메시지와 내부 예외 정보를 사용하여 InstancePersistenceException 클래스의 인스턴스를 초기화합니다.

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

매개 변수

message
String

현재 예외의 원인입니다.

innerException
Exception

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

적용 대상

InstancePersistenceException(XName, Exception)

명령 이름과 내부 예외 정보를 사용하여 InstancePersistenceException 클래스의 인스턴스를 초기화합니다.

public:
 InstancePersistenceException(System::Xml::Linq::XName ^ commandName, Exception ^ innerException);
public InstancePersistenceException (System.Xml.Linq.XName commandName, Exception innerException);
new System.Runtime.DurableInstancing.InstancePersistenceException : System.Xml.Linq.XName * Exception -> System.Runtime.DurableInstancing.InstancePersistenceException
Public Sub New (commandName As XName, innerException As Exception)

매개 변수

commandName
XName

명령의 XName(네임스페이스와 이름의 조합)입니다.

innerException
Exception

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

적용 대상

InstancePersistenceException(XName, String)

명령 이름과 오류 메시지를 사용하여 InstancePersistenceException 클래스의 인스턴스를 초기화합니다.

public:
 InstancePersistenceException(System::Xml::Linq::XName ^ commandName, System::String ^ message);
public InstancePersistenceException (System.Xml.Linq.XName commandName, string message);
new System.Runtime.DurableInstancing.InstancePersistenceException : System.Xml.Linq.XName * string -> System.Runtime.DurableInstancing.InstancePersistenceException
Public Sub New (commandName As XName, message As String)

매개 변수

commandName
XName

명령의 XName(네임스페이스와 이름의 조합)입니다.

message
String

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

적용 대상

InstancePersistenceException(XName, String, Exception)

명령 이름, 오류 메시지 및 내부 예외 정보를 사용하여 InstancePersistenceException 클래스의 인스턴스를 초기화합니다.

public:
 InstancePersistenceException(System::Xml::Linq::XName ^ commandName, System::String ^ message, Exception ^ innerException);
public InstancePersistenceException (System.Xml.Linq.XName commandName, string message, Exception innerException);
new System.Runtime.DurableInstancing.InstancePersistenceException : System.Xml.Linq.XName * string * Exception -> System.Runtime.DurableInstancing.InstancePersistenceException
Public Sub New (commandName As XName, message As String, innerException As Exception)

매개 변수

commandName
XName

명령의 XName(네임스페이스와 이름의 조합)입니다.

message
String

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

innerException
Exception

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

적용 대상