AppDomain::Load Method (AssemblyName, Evidence)
Note: This API is now obsolete. The non-obsolete alternative is Load(AssemblyName).
Loads an Assembly given its AssemblyName.
Assembly: mscorlib (in mscorlib.dll)
[ObsoleteAttribute(L"Methods which use evidence to sandbox are obsolete and will be removed in a future release of the .NET Framework. Please use an overload of Load which does not take an Evidence parameter. See http://go.microsoft.com/fwlink/?LinkID=155570 for more information.")] public: virtual Assembly^ Load( AssemblyName^ assemblyRef, Evidence^ assemblySecurity ) sealed
Parameters
- assemblyRef
- Type: System.Reflection::AssemblyName
An object that describes the assembly to load.
- assemblySecurity
- Type: System.Security.Policy::Evidence
Evidence for loading the assembly.
Implements
_AppDomain::Load(AssemblyName, Evidence)| Exception | Condition |
|---|---|
| ArgumentNullException | assemblyRef is nullptr |
| FileNotFoundException | assemblyRef is not found. |
| BadImageFormatException | assemblyRef is not a valid assembly. -or- Version 2.0 or later of the common language runtime is currently loaded and assemblyRef was compiled with a later version. |
| AppDomainUnloadedException | The operation is attempted on an unloaded application domain. |
| FileLoadException | An assembly or module was loaded twice with two different evidences. |
This method should be used only to load an assembly into the current application domain. This method is provided as a convenience for interoperability callers who cannot call the static Assembly::Load method. To load assemblies into other application domains, use a method such as CreateInstanceAndUnwrap.
For information that is common to all overloads of this method, see the Load(AssemblyName) method overload.
- FileIOPermission
for access to read from a file or directory, and for access to the information in the path itself. Associated enumerations: FileIOPermissionAccess::Read, FileIOPermissionAccess::PathDiscovery.
- SecurityPermission
to load an assembly with evidence. Associated enumeration: SecurityPermissionFlag::ControlEvidence.
- WebPermission
for reading a path that is not in the form "file://" or "\\UNC\dir\" or "c:\".
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.