Click or drag to resize

BasicNoUIObjDisconnecting Event

Occurs when a Disconnect is called.

Namespace: WinWrap.Basic.Server
Assembly: WinWrap.Basic.Server (in WinWrap.Basic.Server.dll)
Syntax
public event EventHandler<EventArgs> Disconnecting

Value

EventHandlerEventArgs

Implements

IBasicNoUIDisconnecting
Remarks
Use this event handler to clean up any associated objects or save any changed properties.
Example
Save properties before object is destroyed:
void basicIdeCtl1_Disconnecting(object sender, System.EventArgs e)
{
}
See Also