AccessControlEntry 建構函式
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
初始化 AccessControlEntry 類別的新執行個體。
多載
AccessControlEntry() |
初始化 AccessControlEntry 類別的新執行個體,以指定未套用任何的信任項或權限集合。 |
AccessControlEntry(Trustee) |
初始化 AccessControlEntry 類別的新執行個體,指定要授與或拒絕權限的信任項。 |
AccessControlEntry(Trustee, GenericAccessRights, StandardAccessRights, AccessControlEntryType) |
初始化 AccessControlEntry 類別的新執行個體,以指定信任項、要指派的權限以及是否授與或拒絕這些權限。 |
AccessControlEntry()
初始化 AccessControlEntry 類別的新執行個體,以指定未套用任何的信任項或權限集合。
public:
AccessControlEntry();
public AccessControlEntry ();
Public Sub New ()
備註
Trustee使用這個AccessControlEntry實體來設定信任項的訪問許可權之前,請先設定 屬性和至少一個GenericAccessRights、 StandardAccessRights或 CustomAccessRights 屬性。
您可以選擇性地設定 EntryType 屬性,但如果您選擇不這麼做,預設為 Allow
。
適用於
AccessControlEntry(Trustee)
初始化 AccessControlEntry 類別的新執行個體,指定要授與或拒絕權限的信任項。
public:
AccessControlEntry(System::Messaging::Trustee ^ trustee);
public AccessControlEntry (System.Messaging.Trustee trustee);
new System.Messaging.AccessControlEntry : System.Messaging.Trustee -> System.Messaging.AccessControlEntry
Public Sub New (trustee As Trustee)
參數
例外狀況
trustee
參數為 null
。
備註
EntryType使用這個AccessControlEntry實體來設定信任項的訪問許可權之前,請先設定 屬性和至少一個GenericAccessRights、 StandardAccessRights或 CustomAccessRights 屬性。
另請參閱
適用於
AccessControlEntry(Trustee, GenericAccessRights, StandardAccessRights, AccessControlEntryType)
初始化 AccessControlEntry 類別的新執行個體,以指定信任項、要指派的權限以及是否授與或拒絕這些權限。
public:
AccessControlEntry(System::Messaging::Trustee ^ trustee, System::Messaging::GenericAccessRights genericAccessRights, System::Messaging::StandardAccessRights standardAccessRights, System::Messaging::AccessControlEntryType entryType);
public AccessControlEntry (System.Messaging.Trustee trustee, System.Messaging.GenericAccessRights genericAccessRights, System.Messaging.StandardAccessRights standardAccessRights, System.Messaging.AccessControlEntryType entryType);
new System.Messaging.AccessControlEntry : System.Messaging.Trustee * System.Messaging.GenericAccessRights * System.Messaging.StandardAccessRights * System.Messaging.AccessControlEntryType -> System.Messaging.AccessControlEntry
Public Sub New (trustee As Trustee, genericAccessRights As GenericAccessRights, standardAccessRights As StandardAccessRights, entryType As AccessControlEntryType)
參數
- genericAccessRights
- GenericAccessRights
GenericAccessRights 值的位元組合。
- standardAccessRights
- StandardAccessRights
StandardAccessRights 值的位元組合。
- entryType
- AccessControlEntryType
其中一個 AccessControlEntryType 值,指定是否允許、拒絕、設定或撤銷指定的權限。
例外狀況
trustee
參數為 null
。
genericAccessRights
、standardAccessRights
或 entryType
參數不是有效的列舉值。
備註
這個建構函式的多載會將 CustomAccessRights 屬性設定為您指定的 和 standardAccessRights
參數的genericAccessRights
位元組合。