0 out of 1 rated this helpful - Rate this topic

SecurityManager.IsGranted Method

Note: This API is now obsolete.

Determines whether a permission is granted to the caller.

Namespace:  System.Security
Assembly:  mscorlib (in mscorlib.dll)
[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.")]
public 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.Boolean
true 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

Supported in: 3.5, 3.0, 2.0, 1.1, 1.0
Obsolete (compiler warning) in 4.5
Obsolete (compiler warning) in 4

.NET Framework Client Profile

Supported in: 3.5 SP1
Obsolete (compiler warning) in 4

Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.