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[], Byte[])

Loads the Assembly with a COFF based image containing an emitted Assembly. The raw bytes representing the symbols for the Assembly are also loaded.

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

Parameters

rawAssembly
[To be supplied.]
rawSymbolStore
[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