System.Net.HttpConnection.CloseSocket C# (CSharp) Method

CloseSocket() private method

private CloseSocket ( ) : void
return void
		void CloseSocket ()
		{
			if (sock == null)
				return;

			try {
				sock.Close ();
			} catch {
			} finally {
				sock = null;
			}
		}