Abort() private method

private Abort ( ) : void
return void
Example #1
0
 void Abort()
 {
     try {
         transport.Abort();
     }
     catch {
     }
 }
Example #2
0
 private void Abort()
 {
     try
     {
         _transport.Abort();
     }
     catch
     {
     }
 }
Example #3
0
        private void Abort()
        {
            // Try-catch commented out to identify exception that is causing
            // https://github.com/dotnet/corefx/issues/40711.

            // try
            // {
            _transport.Abort();
            // }
            // catch
            // {
            // }
        }
Example #4
0
 private void Abort() => _transport.Abort();