XamlInternalException 생성자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
XamlInternalException 클래스의 새 인스턴스를 초기화합니다.
오버로드
XamlInternalException() |
오류를 설명하는 시스템 제공 메시지를 사용하여 XamlInternalException 클래스의 새 인스턴스를 초기화합니다. |
XamlInternalException(String) |
오류를 설명하는 지정한 메시지를 사용하여 XamlInternalException 클래스의 새 인스턴스를 초기화합니다. |
XamlInternalException(SerializationInfo, StreamingContext) |
serialize된 데이터를 사용하여 XamlInternalException 클래스의 새 인스턴스를 초기화합니다. |
XamlInternalException(String, Exception) |
지정된 오류 메시지와 해당 예외의 원인인 내부 예외에 대한 참조를 사용하여 XamlInternalException 클래스의 새 인스턴스를 초기화합니다. |
XamlInternalException()
오류를 설명하는 시스템 제공 메시지를 사용하여 XamlInternalException 클래스의 새 인스턴스를 초기화합니다.
public:
XamlInternalException();
public XamlInternalException ();
Public Sub New ()
적용 대상
XamlInternalException(String)
오류를 설명하는 지정한 메시지를 사용하여 XamlInternalException 클래스의 새 인스턴스를 초기화합니다.
public:
XamlInternalException(System::String ^ message);
public XamlInternalException (string message);
new System.Xaml.XamlInternalException : string -> System.Xaml.XamlInternalException
Public Sub New (message As String)
매개 변수
- message
- String
예외를 설명하는 메시지입니다.
적용 대상
XamlInternalException(SerializationInfo, StreamingContext)
serialize된 데이터를 사용하여 XamlInternalException 클래스의 새 인스턴스를 초기화합니다.
protected:
XamlInternalException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected XamlInternalException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new System.Xaml.XamlInternalException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Xaml.XamlInternalException
Protected Sub New (info As SerializationInfo, context As StreamingContext)
매개 변수
- info
- SerializationInfo
serialize된 개체 데이터를 보유하는 개체입니다.
- context
- StreamingContext
원본 또는 대상에 대한 컨텍스트 정보입니다.
적용 대상
XamlInternalException(String, Exception)
지정된 오류 메시지와 해당 예외의 원인인 내부 예외에 대한 참조를 사용하여 XamlInternalException 클래스의 새 인스턴스를 초기화합니다.
public:
XamlInternalException(System::String ^ message, Exception ^ innerException);
public XamlInternalException (string message, Exception innerException);
new System.Xaml.XamlInternalException : string * Exception -> System.Xaml.XamlInternalException
Public Sub New (message As String, innerException As Exception)
매개 변수
- message
- String
예외를 설명하는 메시지입니다.
- innerException
- Exception
현재 예외의 원인인 예외입니다. innerException
매개 변수가 null
이 아니면 현재 예외는 내부 예외를 처리하는 catch
블록에서 발생합니다.