Assembly.Load Method (Byte[], Byte[], SecurityContextSource)
Loads the assembly with a common object file format (COFF)-based image containing an emitted assembly, optionally including symbols and specifying the source for the security context. The assembly is loaded into the application domain of the caller.
Assembly: mscorlib (in mscorlib.dll)
public static Assembly Load( byte[] rawAssembly, byte[] rawSymbolStore, SecurityContextSource securityContextSource )
Parameters
- rawAssembly
- Type: System.Byte[]
A byte array that is a COFF-based image containing an emitted assembly.
- rawSymbolStore
- Type: System.Byte[]
A byte array that contains the raw bytes representing the symbols for the assembly.
- securityContextSource
- Type: System.Security.SecurityContextSource
The source of the security context.
| Exception | Condition |
|---|---|
| ArgumentNullException |
rawAssembly is null. |
| BadImageFormatException |
rawAssembly is not a valid assembly. -or- rawAssembly was compiled with a later version of the common language runtime than the version that is currently loaded. |
| ArgumentOutOfRangeException |
The value of securityContextSource is not one of the enumeration values. |
Windows 7, Windows Vista SP1 or later, Windows XP SP3, 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.