Chameleon and Iguana Plugin C# Class Libraries

Source.DisconnectedEvent Delegate

Event raised upon disconnection of the plugin from Iguana.

[Visual Basic]
Public Delegate Sub Source.DisconnectedEvent( _
   ByVal sender As Object, _
   ByVal Args As EventArgs _
)
[C#]
public delegate void Source.DisconnectedEvent(
   object sender,
   EventArgs Args
);

Parameters

sender
The object that triggered the event.
Args
Arguments to the event.

Remarks

Will not be raised for failed connection attempts. Specifically, will not be raised if Connect throws an exception as a result of a connection failure.

Exceptions should never be allowed to propagate out of the event handler. Event handlers should catch and handle all exceptions internally.

Requirements

Namespace: iNTERFACEWARE.Iguana.Plugin

Assembly: IGC_dotnet (in IGC_dotnet.dll)

See Also

iNTERFACEWARE.Iguana.Plugin Namespace