SecurityIdentifier 생성자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
SecurityIdentifier 클래스의 새 인스턴스를 초기화합니다.
오버로드
| Name | Description |
|---|---|
| SecurityIdentifier(IntPtr) |
SID(보안 식별자)의 SecurityIdentifier 이진 형식에 대한 포인터를 사용하여 클래스의 새 인스턴스를 초기화합니다. |
| SecurityIdentifier(String) |
SDDL(Security Descriptor Definition Language) 형식의 SecurityIdentifier 지정된 SID(보안 식별자)를 사용하여 클래스의 새 인스턴스를 초기화합니다. |
| SecurityIdentifier(Byte[], Int32) |
SID(보안 식별자)의 SecurityIdentifier 지정된 이진 표현을 사용하여 클래스의 새 인스턴스를 초기화합니다. |
| SecurityIdentifier(WellKnownSidType, SecurityIdentifier) |
지정된 잘 알려진 SID(보안 식별자) 형식 및 도메인 SID를 사용하여 클래스의 SecurityIdentifier 새 인스턴스를 초기화합니다. |
SecurityIdentifier(IntPtr)
SID(보안 식별자)의 SecurityIdentifier 이진 형식에 대한 포인터를 사용하여 클래스의 새 인스턴스를 초기화합니다.
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) 형식의 SecurityIdentifier 지정된 SID(보안 식별자)를 사용하여 클래스의 새 인스턴스를 초기화합니다.
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
개체를 만드는 데 사용되는 SID에 대한 SDDL 문자열입니다 SecurityIdentifier .
적용 대상
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합니다.
- domainSid
- SecurityIdentifier
도메인 SID입니다. 이 값은 다음 WellKnownSidType 값에 필요합니다. 이 매개 변수는 다른 WellKnownSidType 값에 대해 무시됩니다.