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

Abort() public method

public Abort ( object sender, EventArgs args ) : void
sender object
args EventArgs
return void
			public void Abort (object sender, EventArgs args)
			{
				WebConnection other = ((HttpWebRequest) sender).WebConnection;
				if (other == null)
					other = Connection;
				other.Abort (sender, args);
			}
		}
WebConnection.AbortHelper