SecurityIdentifier 생성자

정의

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

오버로드

SecurityIdentifier(IntPtr)

SID(보안 식별자)의 SecurityIdentifier 이진 형식에 대한 포인터를 사용하여 클래스의 새 instance 초기화합니다.

SecurityIdentifier(String)

SDDL(Security Descriptor Definition Language) 형식의 지정된 SID(보안 식별자)를 사용하여 SecurityIdentifier 클래스의 새 인스턴스를 초기화합니다.

SecurityIdentifier(Byte[], Int32)

SID(보안 식별자)의 지정된 이진 표시를 사용하여 SecurityIdentifier 클래스의 새 인스턴스를 초기화합니다.

SecurityIdentifier(WellKnownSidType, SecurityIdentifier)

알려진 특정 SID(보안 식별자) 형식 및 도메인 SID를 사용하여 SecurityIdentifier 클래스의 새 인스턴스를 초기화합니다.

SecurityIdentifier(IntPtr)

SID(보안 식별자)의 SecurityIdentifier 이진 형식에 대한 포인터를 사용하여 클래스의 새 instance 초기화합니다.

public:
 SecurityIdentifier(IntPtr binaryForm);
public SecurityIdentifier (IntPtr binaryForm);
new System.Security.Principal.SecurityIdentifier : nativeint -> System.Security.Principal.SecurityIdentifier
Public Sub New (binaryForm As IntPtr)

매개 변수

binaryForm
IntPtr

nativeint

SID의 이진 형식에 대한 포인터입니다.

적용 대상

SecurityIdentifier(String)

SDDL(Security Descriptor Definition Language) 형식의 지정된 SID(보안 식별자)를 사용하여 SecurityIdentifier 클래스의 새 인스턴스를 초기화합니다.

public:
 SecurityIdentifier(System::String ^ sddlForm);
public SecurityIdentifier (string sddlForm);
new System.Security.Principal.SecurityIdentifier : string -> System.Security.Principal.SecurityIdentifier
Public Sub New (sddlForm As String)

매개 변수

sddlForm
String

SecurityIdentifier 개체를 만드는 데 사용하는 SID의 SDDL 문자열입니다.

적용 대상

SecurityIdentifier(Byte[], Int32)

SID(보안 식별자)의 지정된 이진 표시를 사용하여 SecurityIdentifier 클래스의 새 인스턴스를 초기화합니다.

public:
 SecurityIdentifier(cli::array <System::Byte> ^ binaryForm, int offset);
public SecurityIdentifier (byte[] binaryForm, int offset);
new System.Security.Principal.SecurityIdentifier : byte[] * int -> System.Security.Principal.SecurityIdentifier
Public Sub New (binaryForm As Byte(), offset As Integer)

매개 변수

binaryForm
Byte[]

SID를 나타내는 바이트 배열입니다.

offset
Int32

시작 인덱스로 사용할 binaryForm의 바이트 오프셋입니다.

적용 대상

SecurityIdentifier(WellKnownSidType, SecurityIdentifier)

알려진 특정 SID(보안 식별자) 형식 및 도메인 SID를 사용하여 SecurityIdentifier 클래스의 새 인스턴스를 초기화합니다.

public:
 SecurityIdentifier(System::Security::Principal::WellKnownSidType sidType, System::Security::Principal::SecurityIdentifier ^ domainSid);
public SecurityIdentifier (System.Security.Principal.WellKnownSidType sidType, System.Security.Principal.SecurityIdentifier domainSid);
public SecurityIdentifier (System.Security.Principal.WellKnownSidType sidType, System.Security.Principal.SecurityIdentifier? domainSid);
new System.Security.Principal.SecurityIdentifier : System.Security.Principal.WellKnownSidType * System.Security.Principal.SecurityIdentifier -> System.Security.Principal.SecurityIdentifier
Public Sub New (sidType As WellKnownSidType, domainSid As SecurityIdentifier)

매개 변수

sidType
WellKnownSidType

열거형 값 중 하나입니다. 이 값은 LogonIdsSid이면 안 됩니다.

적용 대상