PersistenceException 생성자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
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되도록 한 예외입니다.