다음을 통해 공유


PipeSecurity.AccessRuleFactory 메서드

정의

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

public:
 override System::Security::AccessControl::AccessRule ^ AccessRuleFactory(System::Security::Principal::IdentityReference ^ identityReference, int accessMask, bool isInherited, System::Security::AccessControl::InheritanceFlags inheritanceFlags, System::Security::AccessControl::PropagationFlags propagationFlags, System::Security::AccessControl::AccessControlType type);
public override System.Security.AccessControl.AccessRule AccessRuleFactory (System.Security.Principal.IdentityReference identityReference, int accessMask, bool isInherited, System.Security.AccessControl.InheritanceFlags inheritanceFlags, System.Security.AccessControl.PropagationFlags propagationFlags, System.Security.AccessControl.AccessControlType type);
override this.AccessRuleFactory : System.Security.Principal.IdentityReference * int * bool * System.Security.AccessControl.InheritanceFlags * System.Security.AccessControl.PropagationFlags * System.Security.AccessControl.AccessControlType -> System.Security.AccessControl.AccessRule
Public Overrides Function AccessRuleFactory (identityReference As IdentityReference, accessMask As Integer, isInherited As Boolean, inheritanceFlags As InheritanceFlags, propagationFlags As PropagationFlags, type As AccessControlType) As AccessRule

매개 변수

identityReference
IdentityReference

액세스 규칙이 적용되는 ID입니다. 이는 SecurityIdentifier 개체로 캐스팅할 수 있는 개체여야 합니다.

accessMask
Int32

이 규칙의 액세스 마스크입니다. 액세스 마스크는 개별 통합자가 정의하는 의미에 해당하는 익명 비트의 32비트 컬렉션입니다.

isInherited
Boolean

이 규칙이 부모 컨테이너에서 상속되면 true이고, 그렇지 않으면 false입니다.

inheritanceFlags
InheritanceFlags

액세스 규칙의 상속 속성을 지정하는 InheritanceFlags 값 중 하나입니다.

propagationFlags
PropagationFlags

상속된 액세스 규칙을 자동으로 전파할지 여부를 지정하는 PropagationFlags 값 중 하나입니다. inheritanceFlagsNone으로 설정되면 전파 플래그는 무시됩니다.

type
AccessControlType

유효한 액세스 제어 형식을 지정합니다.

반환

이 메서드가 만드는 AccessRule 개체입니다.

예외

accessMask, inheritanceFlags, propagationFlags 또는 type에 잘못된 값을 지정하는 경우

identityReference이(가) null인 경우

또는

accessMask가 0입니다.

identityReference의 형식이 SecurityIdentifier도 아니고 NTAccount 형식으로 변환할 수 있는 SecurityIdentifier 같은 형식도 아닌 경우

설명

액세스 제어 규칙을 만드는 권장 방법은 클래스의 생성자를 사용하는 것입니다 PipeAccessRule .

적용 대상