다음을 통해 공유


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

적용 대상