다음을 통해 공유


PersistenceException 생성자

정의

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

오버로드

PersistenceException()

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

PersistenceException(String)

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

PersistenceException(SerializationInfo, StreamingContext)

지정된 PersistenceException 및 지정된 SerializationInfo를 사용하여 StreamingContext 클래스의 새 인스턴스를 초기화합니다.

PersistenceException(String, Exception)

지정된 메시지 및 PersistenceException을 사용하여 Exception 클래스의 새 인스턴스를 초기화합니다.

PersistenceException()

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

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

적용 대상

PersistenceException(String)

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

public:
 PersistenceException(System::String ^ message);
public PersistenceException (string message);
new System.Workflow.Runtime.Hosting.PersistenceException : string -> System.Workflow.Runtime.Hosting.PersistenceException
Public Sub New (message As String)

매개 변수

message
String

예외 원인에 대한 설명입니다.

적용 대상

PersistenceException(SerializationInfo, StreamingContext)

지정된 PersistenceException 및 지정된 SerializationInfo를 사용하여 StreamingContext 클래스의 새 인스턴스를 초기화합니다.

protected:
 PersistenceException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected PersistenceException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new System.Workflow.Runtime.Hosting.PersistenceException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Workflow.Runtime.Hosting.PersistenceException
Protected Sub New (info As SerializationInfo, context As StreamingContext)

매개 변수

info
SerializationInfo

serialize된 개체 데이터를 보유하는 SerializationInfo입니다.

context
StreamingContext

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

설명

이 생성자는 스트림을 통해 전송되는 예외 개체를 다시 구성하기 위해 역직렬화 중에 호출됩니다. 자세한 내용은 XML 및 SOAP Serialization합니다.

적용 대상

PersistenceException(String, Exception)

지정된 메시지 및 PersistenceException을 사용하여 Exception 클래스의 새 인스턴스를 초기화합니다.

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

매개 변수

message
String

예외 원인에 대한 설명입니다.

innerException
Exception

PersistenceException이 throw되도록 한 예외입니다.

적용 대상