SecurityManager.GetZoneAndOrigin(ArrayList, ArrayList) Method

Definition

Gets the granted zone identity and URL identity permission sets for the current assembly.

public:
 static void GetZoneAndOrigin([Runtime::InteropServices::Out] System::Collections::ArrayList ^ % zone, [Runtime::InteropServices::Out] System::Collections::ArrayList ^ % origin);
public static void GetZoneAndOrigin (out System.Collections.ArrayList zone, out System.Collections.ArrayList origin);
[System.Security.SecurityCritical]
public static void GetZoneAndOrigin (out System.Collections.ArrayList zone, out System.Collections.ArrayList origin);
static member GetZoneAndOrigin : ArrayList * ArrayList -> unit
[<System.Security.SecurityCritical>]
static member GetZoneAndOrigin : ArrayList * ArrayList -> unit
Public Shared Sub GetZoneAndOrigin (ByRef zone As ArrayList, ByRef origin As ArrayList)

Parameters

zone
ArrayList

An output parameter that contains an ArrayList of granted Zone objects.

origin
ArrayList

An output parameter that contains an ArrayList of granted UrlIdentityPermission objects.

Attributes

Exceptions

Remarks

The recommended alternative to this method is to use the URL and Zone evidence for the executing assembly to call ResolvePolicy for each evidence type. The permission sets returned from the ResolvePolicy calls identify the permissions granted to the executing assembly based on its zone and URL of origin.

Note

This member makes a link demand for the ECMA public key, which is not a valid cryptographic key but a pseudo key. Within the .NET Framework the link demand for the ECMA pseudo key is automatically converted to a link demand for the Microsoft public key. The security exception is based on the Microsoft public key, not the ECMA pseudo key.

Applies to