in src/main/csharp/Connection.cs [283:297]
private void HandleTransportInterrupted()
{
Tracer.Debug("Transport has been Interrupted.");
if(this.ConnectionInterruptedListener != null && !this.closed)
{
try
{
this.ConnectionInterruptedListener();
}
catch
{
}
}
}