SecurityManager::IsGranted Method (IPermission^)
.NET Framework (current version)
Note: This API is now obsolete.
Namespace:
System.Security
Assembly: mscorlib (in mscorlib.dll)
Return to top
Determines whether a permission is granted to the caller.
Assembly: mscorlib (in mscorlib.dll)
public: [ObsoleteAttribute("IsGranted is obsolete and will be removed in a future release of the .NET Framework. Please use the PermissionSet property of either AppDomain or Assembly instead.")] static bool IsGranted( IPermission^ perm )
Parameters
- perm
-
Type:
System.Security::IPermission^
The permission to test against the grant of the caller.
Return Value
Type: System::Booleantrue if the permissions granted to the caller include the permission perm; otherwise, false.
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.
.NET Framework
Available since 1.1
Available since 1.1
Show: