GenericPrincipal.IsInRole(String) 方法

定义

确定当前 GenericPrincipal 是否属于指定的角色。

public:
 override bool IsInRole(System::String ^ role);
public:
 virtual bool IsInRole(System::String ^ role);
public override bool IsInRole (string role);
public override bool IsInRole (string? role);
public virtual bool IsInRole (string role);
override this.IsInRole : string -> bool
abstract member IsInRole : string -> bool
override this.IsInRole : string -> bool
Public Overrides Function IsInRole (role As String) As Boolean
Public Overridable Function IsInRole (role As String) As Boolean

参数

role
String

要检查其成员资格的角色的名称。

返回

如果当前 GenericPrincipal 是指定角色的成员,则为 true;否则为 false

实现

示例

以下代码演示如何使用 IsInRole 方法。 此代码示例是为 GenericPrincipal 类提供的一个更大示例的一部分。

if ( genericPrincipal->IsInRole( L"NetworkUser" ) )
{
   Console::WriteLine( L"User belongs to the NetworkUser role." );
}
if (genericPrincipal.IsInRole("NetworkUser"))
{
    Console.WriteLine("User belongs to the NetworkUser role.");
}
If (genericPrincipal.IsInRole("NetworkUser")) Then
    WriteLine("User belongs to the NetworkUser role.")
End If

适用于