System.Net.Logging.Exit C# (CSharp) Method

Exit() private method

private Exit ( TraceSource traceSource, object obj, string method, object retObject ) : void
traceSource TraceSource
obj object
method string
retObject object
return void
		internal static void Exit(TraceSource traceSource, object obj, string method, object retObject) {
		}
	}

Usage Example

Example #1
0
 /// <summary>
 /// <para>Closes the underlying FTP response stream, but does not close control connection</para>
 /// </summary>
 public override void Close()
 {
     if (Logging.On)
     {
         Logging.Enter(Logging.Web, this, "Close", "");
     }
     if (HttpProxyMode)
     {
         m_HttpWebResponse.Close();
     }
     else
     {
         Stream stream = m_ResponseStream;
         if (stream != null)
         {
             stream.Close();
         }
     }
     if (Logging.On)
     {
         Logging.Exit(Logging.Web, this, "Close", "");
     }
 }
All Usage Examples Of System.Net.Logging::Exit