CompositionFailedException 생성자

정의

오버로드

CompositionFailedException()

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

CompositionFailedException(String)

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

CompositionFailedException(String, Exception)

지정된 메시지 및 내부 예외를 사용하여 CompositionFailedException 클래스의 새 인스턴스를 초기화합니다.

CompositionFailedException()

Source:
CompositionFailedException.cs
Source:
CompositionFailedException.cs
Source:
CompositionFailedException.cs

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

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

적용 대상

CompositionFailedException(String)

Source:
CompositionFailedException.cs
Source:
CompositionFailedException.cs
Source:
CompositionFailedException.cs

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

public:
 CompositionFailedException(System::String ^ message);
public CompositionFailedException (string message);
new System.Composition.Hosting.CompositionFailedException : string -> System.Composition.Hosting.CompositionFailedException
Public Sub New (message As String)

매개 변수

message
String

예외에 대한 정보가 포함된 메시지입니다.

적용 대상

CompositionFailedException(String, Exception)

Source:
CompositionFailedException.cs
Source:
CompositionFailedException.cs
Source:
CompositionFailedException.cs

지정된 메시지 및 내부 예외를 사용하여 CompositionFailedException 클래스의 새 인스턴스를 초기화합니다.

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

매개 변수

message
String

예외에 대한 정보가 포함된 메시지입니다.

innerException
Exception

이 예외에서 래핑하는 내부 예외입니다.

적용 대상