[To be supplied.]
Loads the assembly with a COFF based image containing an emitted assembly. The assembly is loaded into the domain of the caller using the supplied evidence. The raw bytes representing the symbols for the assembly are also loaded.
[Visual Basic] Overloads Public Shared Function Load(Byte(), Byte(), Evidence) As Assembly
[C#] public static Assembly Load(byte[], byte[], Evidence);
[C++] public: static Assembly* Load(unsigned char*[], unsigned char*[], Evidence);
[JScript] public static function Load(Byte[], Byte[], Evidence) : Assembly;
Loads the assembly with a COFF based image containing an emitted assembly. The assembly is loaded into the domain of the caller. The raw bytes representing the symbols for the assembly are also loaded.
[Visual Basic] Overloads Public Shared Function Load(Byte(), Byte()) As Assembly
[C#] public static Assembly Load(byte[], byte[]);
[C++] public: static Assembly* Load(unsigned char*[], unsigned char*[]);
[JScript] public static function Load(Byte[], Byte[]) : Assembly;
Loads an assembly given its display name.
[Visual Basic] Overloads Public Shared Function Load(String) As Assembly
[C#] public static Assembly Load(String);
[C++] public: static Assembly* Load(String*);
[JScript] public static function Load(String) : Assembly;
Loads an assembly given its AssemblyName. The assembly may be shared.
[Visual Basic] Overloads Public Shared Function Load(AssemblyName, Boolean) As Assembly
[C#] public static Assembly Load(AssemblyName, bool);
[C++] public: static Assembly* Load(AssemblyName*, bool);
[JScript] public static function Load(AssemblyName, Boolean) : Assembly;
Loads an assembly given its AssemblyName.
[Visual Basic] Overloads Public Shared Function Load(AssemblyName) As Assembly
[C#] public static Assembly Load(AssemblyName);
[C++] public: static Assembly* Load(AssemblyName*);
[JScript] public static function Load(AssemblyName) : Assembly;
Loads an assembly given its display name. The assembly may optionally be shared.
[Visual Basic] Overloads Public Shared Function Load(String, Boolean) As Assembly
[C#] public static Assembly Load(String, bool);
[C++] public: static Assembly* Load(String*, bool);
[JScript] public static function Load(String, Boolean) : Assembly;
Loads an assembly given its display name. The assembly is loaded into the domain of the caller using the supplied evidence. The assembly may optionally be shared.
[Visual Basic] Overloads Public Shared Function Load(String, Evidence, Boolean) As Assembly
[C#] public static Assembly Load(String, Evidence, bool);
[C++] public: static Assembly* Load(String*, Evidence, bool);
[JScript] public static function Load(String, Evidence, Boolean) : Assembly;
Loads the assembly with a COFF based image containing an emitted assembly. The assembly is loaded into the domain of the caller.
[Visual Basic] Overloads Public Shared Function Load(Byte()) As Assembly
[C#] public static Assembly Load(byte[]);
[C++] public: static Assembly* Load(unsigned char*[]);
[JScript] public static function Load(Byte[]) : Assembly;
Loads the assembly with a COFF based image containing an emitted assembly. The assembly is loaded into the domain of the caller using the supplied evidence. The assembly may optionally be shared.
[Visual Basic] Overloads Public Shared Function Load(AssemblyName, Evidence, Boolean) As Assembly
[C#] public static Assembly Load(AssemblyName, Evidence, bool);
[C++] public: static Assembly* Load(AssemblyName*, Evidence, bool);
[JScript] public static function Load(AssemblyName, Evidence, Boolean) : Assembly;
Assembly Class | Assembly Members | System.Reflection Namespace