PrivilegeNotHeldException 생성자

정의

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

오버로드

Name Description
PrivilegeNotHeldException()

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

PrivilegeNotHeldException(String)

지정된 권한을 사용하여 클래스의 PrivilegeNotHeldException 새 인스턴스를 초기화합니다.

PrivilegeNotHeldException(String, Exception)

지정된 예외를 사용하여 클래스의 PrivilegeNotHeldException 새 인스턴스를 초기화합니다.

PrivilegeNotHeldException()

Source:
PrivilegeNotHeldException.cs

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

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

적용 대상

PrivilegeNotHeldException(String)

Source:
PrivilegeNotHeldException.cs

지정된 권한을 사용하여 클래스의 PrivilegeNotHeldException 새 인스턴스를 초기화합니다.

public:
 PrivilegeNotHeldException(System::String ^ privilege);
public PrivilegeNotHeldException(string? privilege);
public PrivilegeNotHeldException(string privilege);
new System.Security.AccessControl.PrivilegeNotHeldException : string -> System.Security.AccessControl.PrivilegeNotHeldException
Public Sub New (privilege As String)

매개 변수

privilege
String

사용하도록 설정되지 않은 권한입니다.

적용 대상

PrivilegeNotHeldException(String, Exception)

Source:
PrivilegeNotHeldException.cs

지정된 예외를 사용하여 클래스의 PrivilegeNotHeldException 새 인스턴스를 초기화합니다.

public:
 PrivilegeNotHeldException(System::String ^ privilege, Exception ^ inner);
public PrivilegeNotHeldException(string? privilege, Exception? inner);
public PrivilegeNotHeldException(string privilege, Exception inner);
new System.Security.AccessControl.PrivilegeNotHeldException : string * Exception -> System.Security.AccessControl.PrivilegeNotHeldException
Public Sub New (privilege As String, inner As Exception)

매개 변수

privilege
String

사용하도록 설정되지 않은 권한입니다.

inner
Exception

현재 예외의 원인인 예외입니다. 매개 변수가 innerException null 참조(Nothing Visual Basic)가 아닌 경우 내부 예외를 catch 처리하는 블록에서 현재 예외가 발생합니다.

적용 대상