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!

AppDomain.Load (Byte[])

Loads the Assembly with a COFF based image containing an emitted Assembly.

[Visual Basic]
Overloads Public Function Load( _
   ByVal rawAssembly() As Byte _
) As Assembly
[C#]
public Assembly Load(
   byte[] rawAssembly
);
[C++]
public: Assembly* Load(
   unsigned char* rawAssembly[]
);
[JScript]
public function Load(
   rawAssembly : Byte[]
) : Assembly;

Parameters

rawAssembly
[To be supplied.]

Return Value

The loaded Assembly.

Exceptions

Exception Type Condition
ArgumentNullException if assemblyRef is a null reference (in Visual Basic Nothing)

See Also

AppDomain Class | AppDomain Members | System Namespace | AppDomain.Load Overload List