ObjectAccessRule 构造函数
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
用指定的值初始化 ObjectAccessRule 类的新实例。
protected:
ObjectAccessRule(System::Security::Principal::IdentityReference ^ identity, int accessMask, bool isInherited, System::Security::AccessControl::InheritanceFlags inheritanceFlags, System::Security::AccessControl::PropagationFlags propagationFlags, Guid objectType, Guid inheritedObjectType, System::Security::AccessControl::AccessControlType type);
protected ObjectAccessRule (System.Security.Principal.IdentityReference identity, int accessMask, bool isInherited, System.Security.AccessControl.InheritanceFlags inheritanceFlags, System.Security.AccessControl.PropagationFlags propagationFlags, Guid objectType, Guid inheritedObjectType, System.Security.AccessControl.AccessControlType type);
new System.Security.AccessControl.ObjectAccessRule : System.Security.Principal.IdentityReference * int * bool * System.Security.AccessControl.InheritanceFlags * System.Security.AccessControl.PropagationFlags * Guid * Guid * System.Security.AccessControl.AccessControlType -> System.Security.AccessControl.ObjectAccessRule
Protected Sub New (identity As IdentityReference, accessMask As Integer, isInherited As Boolean, inheritanceFlags As InheritanceFlags, propagationFlags As PropagationFlags, objectType As Guid, inheritedObjectType As Guid, type As AccessControlType)
参数
- identity
- IdentityReference
访问规则应用到其中的标识。 它必须是可强制转换为 SecurityIdentifier的对象。
- accessMask
- Int32
此规则的访问掩码。 访问掩码是 32 位的匿名位集合,其含义由单个集成者定义。
- isInherited
- Boolean
如果此规则继承自父容器,则为 true
。
- inheritanceFlags
- InheritanceFlags
指定访问规则的继承属性。
- propagationFlags
- PropagationFlags
指定继承的访问规则是否自动传播。 如果将 inheritanceFlags
设置为 None,则忽略传播标志。
- objectType
- Guid
应用此规则的对象的类型。
- inheritedObjectType
- Guid
能够继承此规则的子对象的类型。
- type
- AccessControlType
指定此规则是允许还是拒绝访问。
例外
identity
参数的值不能强制转换为 SecurityIdentifier,否则 type
参数包含无效值。
accessMask
参数的值为零,或者 inheritanceFlags
或 propagationFlags
参数包含无法识别的标志值。