Abort() private méthode

private Abort ( ) : void
Résultat void
Exemple #1
0
 void Abort()
 {
     try {
         transport.Abort();
     }
     catch {
     }
 }
Exemple #2
0
 private void Abort()
 {
     try
     {
         _transport.Abort();
     }
     catch
     {
     }
 }
Exemple #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
            // {
            // }
        }
Exemple #4
0
 private void Abort() => _transport.Abort();