Assembly.Load Method (String, Evidence)
Loads an assembly given its display name, loading the assembly into the domain of the caller using the supplied evidence.
[Visual Basic] Overloads Public Shared Function Load( _ ByVal assemblyString As String, _ ByVal assemblySecurity As Evidence _ ) As Assembly [C#] public static Assembly Load( string assemblyString, Evidence assemblySecurity ); [C++] public: static Assembly* Load( String* assemblyString, Evidence* assemblySecurity ); [JScript] public static function Load( assemblyString : String, assemblySecurity : Evidence ) : Assembly;
Parameters
- assemblyString
- The display name of the assembly.
- assemblySecurity
- Evidence for loading the assembly.
Return Value
The loaded assembly.
Exceptions
| Exception Type | Condition |
|---|---|
| ArgumentNullException | assemblyString is a null reference (Nothing in Visual Basic). |
| FileNotFoundException | assemblyString is not found. |
| BadImageFormatException | assemblyFile is not a valid assembly. |
| FileLoadException | An assembly or module was loaded twice with two different evidences. |
| SecurityException | The caller does not have the required permission. |
Remarks
The Load methods use the default load context, which records the assembly name and assembly instance information for the set of assemblies that is the transitive closure of the assemblies referenced by a managed application. The default load context applies to assemblies that are loaded with a Load method and that use a fully qualified assembly reference.
Whether certain permissions are granted or not granted to an assembly is based on evidence. The rules for assembly and security evidence merging are as follows:
- When you use a Load method with no Evidence parameter, the assembly is loaded with the evidence that the loader supplies.
- When you use a Load method with an Evidence parameter, pieces of evidence are merged. Pieces of evidence supplied as an argument to the Load method supersede pieces of evidence supplied by the loader.
- When you use a Load method with a Byte[] parameter to load a common object file format (COFF) image, evidence is combined. Zone, Url and Site are inherited from the calling assembly, and Hash and StrongName are taken from the COFF assembly.
- When you use a Load method with a Byte[] parameter and Evidence to load a common object file format (COFF) image, only the supplied evidence is used. Evidence of the calling assembly and evidence of the COFF image is ignored.
Reflecting on Managed Extensions for C++ executable files might throw a BadImageFormatException. This is most likely caused by C++ compiler stripping the relocation addresses or the .Reloc section from your executable file. To preserve the .reloc address for your C++ executable file, specify /fixed:no when you are linking.
Requirements
Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family
.NET Framework Security:
- ReflectionPermission when invoked late-bound through mechanisms such as Type.InvokeMember. Associated enumeration: ReflectionPermissionFlag.MemberAccess.
- 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 URI that does not begin with "file://".
- SecurityPermission to load an assembly with evidence. Associated enumeration: SecurityPermissionFlag.ControlEvidence.
See Also
Assembly Class | Assembly Members | System.Reflection Namespace | Assembly.Load Overload List | Evidence