Sdílet prostřednictvím


GenericPrincipal.IsInRole(String) Metoda

Definice

Určuje, zda aktuální GenericPrincipal patří do zadané role.

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

Parametry

role
String

Název role, pro kterou chcete zkontrolovat členství.

Návraty

true pokud je aktuální GenericPrincipal členem zadané role, v opačném případě false.

Implementuje

Příklady

Následující kód ukazuje použití IsInRole metody. Tento příklad kódu je součástí většího příkladu GenericPrincipal pro třídu.

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

Platí pro