다음을 통해 공유


MultipleMatchesException 생성자

정의

MultipleMatchesException 클래스의 새 인스턴스를 인스턴스화합니다.

오버로드

MultipleMatchesException()

MultipleMatchesException 클래스의 새 인스턴스를 인스턴스화합니다.

MultipleMatchesException(String)

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

MultipleMatchesException(SerializationInfo, StreamingContext)
사용되지 않음.

지정된 MultipleMatchesExceptionSerializationInfo 인스턴스에서 StreamingContext 클래스의 새 인스턴스를 초기화합니다.

MultipleMatchesException(String, Exception)

지정된 오류 메시지 및 지정된 중첩 예외를 사용하여 MultipleMatchesException 클래스의 새 인스턴스를 인스턴스화합니다.

MultipleMatchesException()

Source:
exceptions.cs
Source:
exceptions.cs
Source:
exceptions.cs

MultipleMatchesException 클래스의 새 인스턴스를 인스턴스화합니다.

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

설명

매개 변수가 없는 생성자는 클래스의 MultipleMatchesException 새 instance 초기화합니다. Message 속성은 오류를 설명 하는 시스템 제공 메시지로 초기화 합니다. 이 메시지는 현재 시스템 culture를 고려합니다. 합니다 InnerException 으로 초기화 됩니다 null합니다.

적용 대상

MultipleMatchesException(String)

Source:
exceptions.cs
Source:
exceptions.cs
Source:
exceptions.cs

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

public:
 MultipleMatchesException(System::String ^ message);
public MultipleMatchesException (string message);
new System.DirectoryServices.AccountManagement.MultipleMatchesException : string -> System.DirectoryServices.AccountManagement.MultipleMatchesException
Public Sub New (message As String)

매개 변수

message
String

오류 메시지 텍스트입니다.

설명

합니다 MultipleMatchesException 인스턴스가 사용 하 여 초기화 되는 Message 속성의 값으로 설정 message합니다. 하는 경우 message 됩니다 nullMessage 속성은 시스템 제공 메시지로 초기화 합니다.

적용 대상

MultipleMatchesException(SerializationInfo, StreamingContext)

Source:
exceptions.cs
Source:
exceptions.cs
Source:
exceptions.cs

주의

This API supports obsolete formatter-based serialization. It should not be called or extended by application code.

지정된 MultipleMatchesExceptionSerializationInfo 인스턴스에서 StreamingContext 클래스의 새 인스턴스를 초기화합니다.

protected:
 MultipleMatchesException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected MultipleMatchesException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
[System.Obsolete("This API supports obsolete formatter-based serialization. It should not be called or extended by application code.", DiagnosticId="SYSLIB0051", UrlFormat="https://aka.ms/dotnet-warnings/{0}")]
protected MultipleMatchesException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new System.DirectoryServices.AccountManagement.MultipleMatchesException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.DirectoryServices.AccountManagement.MultipleMatchesException
[<System.Obsolete("This API supports obsolete formatter-based serialization. It should not be called or extended by application code.", DiagnosticId="SYSLIB0051", UrlFormat="https://aka.ms/dotnet-warnings/{0}")>]
new System.DirectoryServices.AccountManagement.MultipleMatchesException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.DirectoryServices.AccountManagement.MultipleMatchesException
Protected Sub New (info As SerializationInfo, context As StreamingContext)

매개 변수

info
SerializationInfo

MultipleMatchesException을 직렬화하는 데 필요한 정보가 들어 있는 SerializationInfo입니다.

context
StreamingContext

MultipleMatchesException과 관련된 직렬화된 스트림의 원본이 들어 있는 StreamingContext입니다.

특성

적용 대상

MultipleMatchesException(String, Exception)

Source:
exceptions.cs
Source:
exceptions.cs
Source:
exceptions.cs

지정된 오류 메시지 및 지정된 중첩 예외를 사용하여 MultipleMatchesException 클래스의 새 인스턴스를 인스턴스화합니다.

public:
 MultipleMatchesException(System::String ^ message, Exception ^ innerException);
public MultipleMatchesException (string message, Exception innerException);
new System.DirectoryServices.AccountManagement.MultipleMatchesException : string * Exception -> System.DirectoryServices.AccountManagement.MultipleMatchesException
Public Sub New (message As String, innerException As Exception)

매개 변수

message
String

오류 메시지 텍스트입니다.

innerException
Exception

중첩된 예외입니다.

설명

MultipleMatchesException 인스턴스를 초기화할 합니다 Message 속성의 값으로 설정 message 하며 InnerException 속성의 값으로 설정 innerException합니다. 하는 경우 message 됩니다 nullMessage 속성은 시스템 제공 메시지로 초기화 합니다. 합니다 InnerException 으로 초기화 됩니다 null합니다.

적용 대상