PersistenceException 생성자

정의

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

오버로드

Name Description
PersistenceException()

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

PersistenceException(String)

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

PersistenceException(SerializationInfo, StreamingContext)

지정된 인스턴스와 지정된 PersistenceExceptionSerializationInfo클래스를 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)

지정된 인스턴스와 지정된 PersistenceExceptionSerializationInfo클래스를 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

SerializationInfo 직렬화된 개체 데이터를 보유하는 A입니다.

context
StreamingContext

원본 또는 대상에 대한 컨텍스트 정보를 보유하는 A 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

throw된 PersistenceException 예외입니다.

적용 대상