Aracılığıyla paylaş


SecurityCallContext.IsCallerInRole(String) Yöntem

Tanım

Doğrudan çağıranın belirtilen rolün üyesi olduğunu doğrular.

public:
 bool IsCallerInRole(System::String ^ role);
public bool IsCallerInRole (string role);
member this.IsCallerInRole : string -> bool
Public Function IsCallerInRole (role As String) As Boolean

Parametreler

role
String

Belirtilen rol.

Döndürülenler

true doğrudan çağıran belirtilen rolün bir üyesiyse; aksi takdirde , false.

Örnekler

Aşağıdaki kod örneği, bir yöntemi çağıranın belirtilen bir ServicedComponent rolde olup olmadığını belirlemek için bu yöntemin kullanımını gösterir.

// Set the employee's salary. Only managers can do this.
void SetSalary( double ammount )
{
   if ( SecurityCallContext::CurrentCall->IsCallerInRole( "Manager" ) )
   {
      salary = ammount;
   }
   else
   {
      throw gcnew UnauthorizedAccessException;
   }
}
// Set the employee's salary. Only managers can do this.
public void SetSalary (double ammount)
{
    if (SecurityCallContext.CurrentCall.IsCallerInRole("Manager"))
    {
        salary = ammount;
    }
    else
    {
        throw new UnauthorizedAccessException();
    }
}
' Set the employee's salary. Only managers can do this.
Public Sub SetSalary(ByVal ammount As Double) 
    If SecurityCallContext.CurrentCall.IsCallerInRole("Manager") Then
        salary = ammount
    Else
        Throw New UnauthorizedAccessException()
    End If

End Sub

Şunlara uygulanır