AppDomain::Load Method (String, Evidence)
Note: This API is now obsolete. The non-obsolete alternative is Load(String).
Loads an Assembly given its display name.
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( String^ assemblyString, Evidence^ assemblySecurity ) sealed
Parameters
- assemblyString
- Type: System::String
The display name of the assembly. See Assembly::FullName.
- assemblySecurity
- Type: System.Security.Policy::Evidence
Evidence for loading the assembly.
Implements
_AppDomain::Load(String, Evidence)| Exception | Condition |
|---|---|
| ArgumentNullException | assemblyString is nullptr |
| FileNotFoundException | assemblyString is not found. |
| BadImageFormatException | assemblyString is not a valid assembly. -or- Version 2.0 or later of the common language runtime is currently loaded and assemblyString 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.
- SecurityPermission
to load an assembly with evidence. Associated enumeration: SecurityPermissionFlag::ControlEvidence.
- 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.
- 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.