CommonSecurityDescriptor 생성자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
CommonSecurityDescriptor 클래스의 새 인스턴스를 초기화합니다.
오버로드
CommonSecurityDescriptor(Boolean, Boolean, RawSecurityDescriptor) |
지정된 CommonSecurityDescriptor 개체에서 RawSecurityDescriptor 클래스의 새 인스턴스를 초기화합니다. |
CommonSecurityDescriptor(Boolean, Boolean, String) |
지정한 SDDL(Security Descriptor Definition Language) 문자열에서 CommonSecurityDescriptor 클래스의 새 인스턴스를 초기화합니다. |
CommonSecurityDescriptor(Boolean, Boolean, Byte[], Int32) |
지정된 바이트 값 배열을 사용하여 CommonSecurityDescriptor 클래스의 새 인스턴스를 초기화합니다. |
CommonSecurityDescriptor(Boolean, Boolean, ControlFlags, SecurityIdentifier, SecurityIdentifier, SystemAcl, DiscretionaryAcl) |
지정된 정보에서 CommonSecurityDescriptor 클래스의 새 인스턴스를 초기화합니다. |
CommonSecurityDescriptor(Boolean, Boolean, RawSecurityDescriptor)
지정된 CommonSecurityDescriptor 개체에서 RawSecurityDescriptor 클래스의 새 인스턴스를 초기화합니다.
public:
CommonSecurityDescriptor(bool isContainer, bool isDS, System::Security::AccessControl::RawSecurityDescriptor ^ rawSecurityDescriptor);
public CommonSecurityDescriptor (bool isContainer, bool isDS, System.Security.AccessControl.RawSecurityDescriptor rawSecurityDescriptor);
new System.Security.AccessControl.CommonSecurityDescriptor : bool * bool * System.Security.AccessControl.RawSecurityDescriptor -> System.Security.AccessControl.CommonSecurityDescriptor
Public Sub New (isContainer As Boolean, isDS As Boolean, rawSecurityDescriptor As RawSecurityDescriptor)
매개 변수
- isContainer
- Boolean
새 보안 설명자가 컨테이너 개체와 관련되어 있는 경우 true
입니다.
- isDS
- Boolean
새 보안 설명자가 디렉터리 개체와 관련되어 있는 경우 true
입니다.
- rawSecurityDescriptor
- RawSecurityDescriptor
새 RawSecurityDescriptor 개체를 만들 CommonSecurityDescriptor 개체입니다.
설명
새 RawSecurityDescriptor 개체가 만들어지는 기본 보안 설명자에 DACL(임의 액세스 제어 목록)이 포함된 null
경우 AEFA(모든 사용자 전체 액세스)를 허용하는 ACE(단일 액세스 제어 항목)가 DACL에 추가됩니다. 애플리케이션 AEFA ACE가 추가 된 보안 설명자의 DACL을 수정 하는 경우에 DACL을 유지 하는 경우 AEFA ACE DACL을 사용 하 여 유지 됩니다.
이 의도 하지 않게 보안 주체에 대 한 액세스를 허용 하는 애플리케이션에서 발생할 수 있습니다. 이 인해 애플리케이션 AEFA ACE의 존재 여부를 확인 하 고 보안 설명자를 수정 하기 전에 제거 해야 합니다.
적용 대상
CommonSecurityDescriptor(Boolean, Boolean, String)
지정한 SDDL(Security Descriptor Definition Language) 문자열에서 CommonSecurityDescriptor 클래스의 새 인스턴스를 초기화합니다.
public:
CommonSecurityDescriptor(bool isContainer, bool isDS, System::String ^ sddlForm);
public CommonSecurityDescriptor (bool isContainer, bool isDS, string sddlForm);
new System.Security.AccessControl.CommonSecurityDescriptor : bool * bool * string -> System.Security.AccessControl.CommonSecurityDescriptor
Public Sub New (isContainer As Boolean, isDS As Boolean, sddlForm As String)
매개 변수
- isContainer
- Boolean
새 보안 설명자가 컨테이너 개체와 관련되어 있는 경우 true
입니다.
- isDS
- Boolean
새 보안 설명자가 디렉터리 개체와 관련되어 있는 경우 true
입니다.
- sddlForm
- String
새 CommonSecurityDescriptor 개체를 만들 SDDL 문자열입니다.
설명
새 RawSecurityDescriptor 개체가 만들어지는 기본 보안 설명자에 DACL(임의 액세스 제어 목록)이 포함된 null
경우 AEFA(모든 사용자 전체 액세스)를 허용하는 ACE(단일 액세스 제어 항목)가 DACL에 추가됩니다. 애플리케이션 AEFA ACE가 추가 된 보안 설명자의 DACL을 수정 하는 경우에 DACL을 유지 하는 경우 AEFA ACE DACL을 사용 하 여 유지 됩니다.
이 의도 하지 않게 보안 주체에 대 한 액세스를 허용 하는 애플리케이션에서 발생할 수 있습니다. 이 인해 애플리케이션 AEFA ACE의 존재 여부를 확인 하 고 보안 설명자를 수정 하기 전에 제거 해야 합니다.
적용 대상
CommonSecurityDescriptor(Boolean, Boolean, Byte[], Int32)
지정된 바이트 값 배열을 사용하여 CommonSecurityDescriptor 클래스의 새 인스턴스를 초기화합니다.
public:
CommonSecurityDescriptor(bool isContainer, bool isDS, cli::array <System::Byte> ^ binaryForm, int offset);
public CommonSecurityDescriptor (bool isContainer, bool isDS, byte[] binaryForm, int offset);
new System.Security.AccessControl.CommonSecurityDescriptor : bool * bool * byte[] * int -> System.Security.AccessControl.CommonSecurityDescriptor
Public Sub New (isContainer As Boolean, isDS As Boolean, binaryForm As Byte(), offset As Integer)
매개 변수
- isContainer
- Boolean
새 보안 설명자가 컨테이너 개체와 관련되어 있는 경우 true
입니다.
- isDS
- Boolean
새 보안 설명자가 디렉터리 개체와 관련되어 있는 경우 true
입니다.
- binaryForm
- Byte[]
새 CommonSecurityDescriptor 개체를 만들 바이트 값 배열입니다.
- offset
- Int32
binaryForm
배열에서 복사를 시작할 오프셋입니다.
설명
새 RawSecurityDescriptor 개체가 만들어지는 기본 보안 설명자에 DACL(임의 액세스 제어 목록)이 포함된 null
경우 AEFA(모든 사용자 액세스)를 허용하는 ACE(단일 액세스 제어 항목)가 DACL에 추가됩니다. 애플리케이션 AEFA ACE가 추가 된 보안 설명자의 DACL을 수정 하는 경우에 DACL을 유지 하는 경우 AEFA ACE DACL을 사용 하 여 유지 됩니다.
이 의도 하지 않게 보안 주체에 대 한 액세스를 허용 하는 애플리케이션에서 발생할 수 있습니다. 이 인해 애플리케이션 AEFA ACE의 존재 여부를 확인 하 고 보안 설명자를 수정 하기 전에 제거 해야 합니다.
적용 대상
CommonSecurityDescriptor(Boolean, Boolean, ControlFlags, SecurityIdentifier, SecurityIdentifier, SystemAcl, DiscretionaryAcl)
지정된 정보에서 CommonSecurityDescriptor 클래스의 새 인스턴스를 초기화합니다.
public:
CommonSecurityDescriptor(bool isContainer, bool isDS, System::Security::AccessControl::ControlFlags flags, System::Security::Principal::SecurityIdentifier ^ owner, System::Security::Principal::SecurityIdentifier ^ group, System::Security::AccessControl::SystemAcl ^ systemAcl, System::Security::AccessControl::DiscretionaryAcl ^ discretionaryAcl);
public CommonSecurityDescriptor (bool isContainer, bool isDS, System.Security.AccessControl.ControlFlags flags, System.Security.Principal.SecurityIdentifier owner, System.Security.Principal.SecurityIdentifier group, System.Security.AccessControl.SystemAcl systemAcl, System.Security.AccessControl.DiscretionaryAcl discretionaryAcl);
public CommonSecurityDescriptor (bool isContainer, bool isDS, System.Security.AccessControl.ControlFlags flags, System.Security.Principal.SecurityIdentifier? owner, System.Security.Principal.SecurityIdentifier? group, System.Security.AccessControl.SystemAcl? systemAcl, System.Security.AccessControl.DiscretionaryAcl? discretionaryAcl);
new System.Security.AccessControl.CommonSecurityDescriptor : bool * bool * System.Security.AccessControl.ControlFlags * System.Security.Principal.SecurityIdentifier * System.Security.Principal.SecurityIdentifier * System.Security.AccessControl.SystemAcl * System.Security.AccessControl.DiscretionaryAcl -> System.Security.AccessControl.CommonSecurityDescriptor
Public Sub New (isContainer As Boolean, isDS As Boolean, flags As ControlFlags, owner As SecurityIdentifier, group As SecurityIdentifier, systemAcl As SystemAcl, discretionaryAcl As DiscretionaryAcl)
매개 변수
- isContainer
- Boolean
새 보안 설명자가 컨테이너 개체와 관련되어 있는 경우 true
입니다.
- isDS
- Boolean
새 보안 설명자가 디렉터리 개체와 관련되어 있는 경우 true
입니다.
- flags
- ControlFlags
새 CommonSecurityDescriptor 개체의 동작을 지정하는 플래그입니다.
- owner
- SecurityIdentifier
새 CommonSecurityDescriptor 개체의 소유자입니다.
- group
- SecurityIdentifier
새 CommonSecurityDescriptor 개체의 주 그룹입니다.
- systemAcl
- SystemAcl
새 CommonSecurityDescriptor 개체의 SACL(시스템 액세스 제어 목록)입니다.
- discretionaryAcl
- DiscretionaryAcl
새 CommonSecurityDescriptor 개체의 DACL(임의 액세스 제어 목록)입니다.
설명
새 RawSecurityDescriptor 개체가 만들어지는 기본 보안 설명자에 DACL(임의 액세스 제어 목록)이 포함된 null
경우 AEFA(모든 사용자 전체 액세스)를 허용하는 ACE(단일 액세스 제어 항목)가 DACL에 추가됩니다. 애플리케이션 AEFA ACE가 추가 된 보안 설명자의 DACL을 수정 하는 경우에 DACL을 유지 하는 경우 AEFA ACE DACL을 사용 하 여 유지 됩니다.
이 의도 하지 않게 보안 주체에 대 한 액세스를 허용 하는 애플리케이션에서 발생할 수 있습니다. 이 인해 애플리케이션 AEFA ACE의 존재 여부를 확인 하 고 보안 설명자를 수정 하기 전에 제거 해야 합니다.