System.Net.WebConnection.WebConnection C# (CSharp) Method

WebConnection() public method

public WebConnection ( WebConnectionGroup group, ServicePoint sPoint ) : System.IO
group WebConnectionGroup
sPoint ServicePoint
return System.IO
		public WebConnection (WebConnectionGroup group, ServicePoint sPoint)
		{
			this.sPoint = sPoint;
			buffer = new byte [4096];
			readState = ReadState.None;
			Data = new WebConnectionData ();
			initConn = new WaitCallback (state => {
				try {
					InitConnection (state);
				} catch {}
				});
			queue = group.Queue;
			abortHelper = new AbortHelper ();
			abortHelper.Connection = this;
			abortHandler = new EventHandler (abortHelper.Abort);
		}

Same methods

WebConnection::WebConnection ( ) : System.IO