AmbiguousImplementationException 생성자

정의

오버로드

AmbiguousImplementationException()

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

AmbiguousImplementationException(String)

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

AmbiguousImplementationException(String, Exception)

지정된 오류 메시지와 해당 예외의 원인인 내부 예외에 대한 참조를 사용하여 AmbiguousImplementationException 클래스의 새 인스턴스를 초기화합니다.

AmbiguousImplementationException()

Source:
AmbiguousImplementationException.cs
Source:
AmbiguousImplementationException.cs
Source:
AmbiguousImplementationException.cs

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

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

적용 대상

AmbiguousImplementationException(String)

Source:
AmbiguousImplementationException.cs
Source:
AmbiguousImplementationException.cs
Source:
AmbiguousImplementationException.cs

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

public:
 AmbiguousImplementationException(System::String ^ message);
public AmbiguousImplementationException (string? message);
public AmbiguousImplementationException (string message);
new System.Runtime.AmbiguousImplementationException : string -> System.Runtime.AmbiguousImplementationException
Public Sub New (message As String)

매개 변수

message
String

지역화된 오류 메시지 문자열입니다.

적용 대상

AmbiguousImplementationException(String, Exception)

Source:
AmbiguousImplementationException.cs
Source:
AmbiguousImplementationException.cs
Source:
AmbiguousImplementationException.cs

지정된 오류 메시지와 해당 예외의 원인인 내부 예외에 대한 참조를 사용하여 AmbiguousImplementationException 클래스의 새 인스턴스를 초기화합니다.

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

매개 변수

message
String

오류를 설명하는 문자열입니다.

innerException
Exception

현재 예외의 원인인 예외입니다.

적용 대상