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.AddOnAssemblyLoad

Subscribes to the "assembly load" event. The "assembly load" event is raised when an assembly is loaded into the application domain.

[Visual Basic]
Public Sub AddOnAssemblyLoad( _
   ByVal handler As EventHandler _
)
[C#]
public void AddOnAssemblyLoad(
   EventHandler handler
);
[C++]
public: void AddOnAssemblyLoad(
   EventHandler* handler
);
[JScript]
public function AddOnAssemblyLoad(
   handler : EventHandler
);

Parameters

handler
A delegate of type EventHandler to receive the event.

See Also

AppDomain Class | AppDomain Members | System Namespace