Sdílet prostřednictvím


SecurityCallContext.CurrentCall Vlastnost

Definice

SecurityCallContext Získá objekt, který popisuje kontext volání zabezpečení.

public:
 static property System::EnterpriseServices::SecurityCallContext ^ CurrentCall { System::EnterpriseServices::SecurityCallContext ^ get(); };
public static System.EnterpriseServices.SecurityCallContext CurrentCall { get; }
static member CurrentCall : System.EnterpriseServices.SecurityCallContext
Public Shared ReadOnly Property CurrentCall As SecurityCallContext

Hodnota vlastnosti

Objekt SecurityCallContext , který popisuje kontext volání zabezpečení.

Příklady

Následující příklad kódu ukazuje použití této metody k získání objektu SecurityCallContext popisujícího kontext zabezpečení volání metody.

// 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

Poznámky

Statická CurrentCall vlastnost je doporučený způsob přístupu ke kontextu volání zabezpečení.

Platí pro