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 (AssemblyName)

Loads an Assembly given its AssemblyName.

[Visual Basic]
Overloads Public Function Load( _
   ByVal assemblyRef As AssemblyName _
) As Assembly
[C#]
public Assembly Load(
   AssemblyName assemblyRef
);
[C++]
public: Assembly* Load(
   AssemblyName* assemblyRef
);
[JScript]
public function Load(
   assemblyRef : AssemblyName
) : Assembly;

Parameters

assemblyRef
The AssemblyName that describes the Assembly to be loaded.

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