Editar

SecurityManager.IsGranted(IPermission) Method

Definition

Caution

This API is now deprecated.

Determines whether a permission is granted to the caller.

public:
 static bool IsGranted(System::Security::IPermission ^ perm);
[System.Obsolete]
public static bool IsGranted(System.Security.IPermission perm);
public static bool IsGranted(System.Security.IPermission perm);
[<System.Obsolete>]
static member IsGranted : System.Security.IPermission -> bool
static member IsGranted : System.Security.IPermission -> bool
Public Shared Function IsGranted (perm As IPermission) As Boolean

Parameters

perm
IPermission

The permission to test against the grant of the caller.

Returns

true if the permissions granted to the caller include the permission perm; otherwise, false.

Attributes

Remarks

Granting of permissions is determined by policy and is different from a demand subject to overrides, such as an assert. Also, IsGranted only tests the grant of the calling code assembly, independent of other callers on the stack.

Applies to