SemaphoreSecurity.AccessRuleFactory 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
以指定的存取權限、存取控制和旗標,為指定的使用者建立新的存取控制規則。
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
IdentityReference,可識別套用這個規則的使用者或群組。
- accessMask
- Int32
SemaphoreRights 值的位元組合,指定允許或拒絕的存取權限 (轉型成整數)。
- isInherited
- Boolean
對於具名號誌沒有意義,因為它們沒有階層架構。
- inheritanceFlags
- InheritanceFlags
對於具名號誌沒有意義,因為它們沒有階層架構。
- propagationFlags
- PropagationFlags
對於具名號誌沒有意義,因為它們沒有階層架構。
- type
- AccessControlType
其中一個 AccessControlType 值,指定允許還是拒絕權限。
傳回
SemaphoreAccessRule 物件,表示指定之使用者的指定權限。
例外狀況
accessMask
、inheritanceFlags
、propagationFlags
或 type
會指定無效的值。
identityReference
既不是 SecurityIdentifier 型別,也不是可以轉換成 NTAccount 型別的型別 (例如 SecurityIdentifier)。
備註
建立訪問控制規則的建議方式是使用 類別的 SemaphoreAccessRule 建構函式。
注意
雖然繼承和傳播旗標對具名旗號而言沒有意義,但仍可指定它們。不建議這麼做,因為不需要使規則維護複雜,例如干擾其他相容規則的組合。