NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Assembly.Load (Byte[])

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( _
   ByVal rawAssembly() As Byte _
) As Assembly
[C#]
public static Assembly Load(
   byte[] rawAssembly
);
[C++]
public: static Assembly* Load(
   unsigned char* rawAssembly[]
);
[JScript]
public static function Load(
   rawAssembly : Byte[]
) : Assembly;

Parameters

rawAssembly
COFF based image containing an emitted assembly.

Return Value

The loaded assembly.

Remarks

The assembly is loaded into the domain of the caller.

See Also

Assembly Class | Assembly Members | System.Reflection Namespace | Assembly.Load Overload List