System.Net.Sockets.DualSocketMultipleConnectAsync.OnFail C# (CSharp) Method

OnFail() protected method

protected OnFail ( bool abortive ) : void
abortive bool
return void
        protected override void OnFail(bool abortive)
        {
            if (_socket4 != null)
            {
                _socket4.Dispose();
            }
            if (_socket6 != null)
            {
                _socket6.Dispose();
            }
        }
    }