Principal.IsMemberOf 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
返回一个布尔值,该值指定该组是否是指定组的成员。
重载
IsMemberOf(PrincipalContext, IdentityType, String) |
返回一个布尔值,该值指定该主体是否是由标识类型和值指定的组的成员。 |
IsMemberOf(GroupPrincipal) |
返回一个布尔值,该值指定该主体是否是指定组的成员。 |
IsMemberOf(PrincipalContext, IdentityType, String)
- Source:
- Principal.cs
- Source:
- Principal.cs
- Source:
- Principal.cs
返回一个布尔值,该值指定该主体是否是由标识类型和值指定的组的成员。
public:
bool IsMemberOf(System::DirectoryServices::AccountManagement::PrincipalContext ^ context, System::DirectoryServices::AccountManagement::IdentityType identityType, System::String ^ identityValue);
public bool IsMemberOf (System.DirectoryServices.AccountManagement.PrincipalContext context, System.DirectoryServices.AccountManagement.IdentityType identityType, string identityValue);
[System.Security.SecurityCritical]
public bool IsMemberOf (System.DirectoryServices.AccountManagement.PrincipalContext context, System.DirectoryServices.AccountManagement.IdentityType identityType, string identityValue);
member this.IsMemberOf : System.DirectoryServices.AccountManagement.PrincipalContext * System.DirectoryServices.AccountManagement.IdentityType * string -> bool
[<System.Security.SecurityCritical>]
member this.IsMemberOf : System.DirectoryServices.AccountManagement.PrincipalContext * System.DirectoryServices.AccountManagement.IdentityType * string -> bool
Public Function IsMemberOf (context As PrincipalContext, identityType As IdentityType, identityValue As String) As Boolean
参数
- context
- PrincipalContext
PrincipalContext,用于指定要对其执行操作的服务器或域。
- identityType
- IdentityType
一个 IdentityType 枚举值,该值指定标识值的类型。
- identityValue
- String
组的标识。
返回
如果主体是指定组的成员,则为 true
;否则为 false
。
- 属性
例外
标识类型或值与 GroupPrincipal 不对应。
找到多个匹配的 GroupPrincipal。
注解
如果当前主体是 AD DS 主体,则返回的组包括主体的主组,如 AD DS 对象上的主组 ID 属性所示。
适用于
IsMemberOf(GroupPrincipal)
- Source:
- Principal.cs
- Source:
- Principal.cs
- Source:
- Principal.cs
返回一个布尔值,该值指定该主体是否是指定组的成员。
public:
bool IsMemberOf(System::DirectoryServices::AccountManagement::GroupPrincipal ^ group);
public bool IsMemberOf (System.DirectoryServices.AccountManagement.GroupPrincipal group);
[System.Security.SecurityCritical]
public bool IsMemberOf (System.DirectoryServices.AccountManagement.GroupPrincipal group);
member this.IsMemberOf : System.DirectoryServices.AccountManagement.GroupPrincipal -> bool
[<System.Security.SecurityCritical>]
member this.IsMemberOf : System.DirectoryServices.AccountManagement.GroupPrincipal -> bool
Public Function IsMemberOf (group As GroupPrincipal) As Boolean
参数
- group
- GroupPrincipal
为其确定主体成员资格的 GroupPrincipal 对象。
返回
如果主体是指定组的成员,则为 true
;否则为 false
。
- 属性
例外
未能找到在组参数中指定的 GroupPrincipal。
找到多个匹配的 GroupPrincipal。
注解
如果当前主体是 AD DS 主体,则返回的组包括主体的主组,如 AD DS 对象上的主组 ID 属性所示。