NoMatchingPrincipalException 생성자

정의

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

오버로드

Name Description
NoMatchingPrincipalException()

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

NoMatchingPrincipalException(String)

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

NoMatchingPrincipalException(SerializationInfo, StreamingContext)

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

NoMatchingPrincipalException(String, Exception)

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

NoMatchingPrincipalException()

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

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

설명

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

적용 대상

NoMatchingPrincipalException(String)

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

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

매개 변수

message
String

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

설명

인스턴스는 NoMatchingPrincipalException 속성이 Messagemessage으로 설정된 상태에서 초기화됩니다. 이 messagenull 경우 Message 속성은 시스템 제공 메시지로 초기화됩니다.

적용 대상

NoMatchingPrincipalException(SerializationInfo, StreamingContext)

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

protected:
 NoMatchingPrincipalException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected NoMatchingPrincipalException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new System.DirectoryServices.AccountManagement.NoMatchingPrincipalException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.DirectoryServices.AccountManagement.NoMatchingPrincipalException
Protected Sub New (info As SerializationInfo, context As StreamingContext)

매개 변수

info
SerializationInfo

SerializationInfo항목을 serialize하는 데 필요한 정보가 들어 있는 A NoMatchingPrincipalException 입니다.

context
StreamingContext

StreamingContext스트림과 연결된 serialize된 스트림의 원본을 포함하는 A NoMatchingPrincipalException 입니다.

적용 대상

NoMatchingPrincipalException(String, Exception)

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

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

매개 변수

message
String

메시지의 텍스트입니다.

innerException
Exception

중첩된 예외입니다.

설명

인스턴스는 NoMatchingPrincipalException 속성이 Message 값으로 설정되고 속성이 messageInnerException 으로 설정된 상태에서 innerException초기화됩니다. 이 messagenull 경우 Message 속성은 시스템 제공 메시지로 초기화됩니다. 이 InnerException 초기화 null됩니다.

적용 대상