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

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

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

Parameters

handler
The delegate that was previously registered.

See Also

AppDomain Class | AppDomain Members | System Namespace