System.Net.Browser.ClientHttpWebRequestInternal.Abort C# (CSharp) Method

Abort() public method

public Abort ( ) : void
return void
		public override void Abort ()
		{
			try {
				abort.Invoke (request, null);
			}
			catch (TargetInvocationException tie) {
				throw tie.InnerException;
			}
		}

Usage Example

Example #1
0
        public override void Abort()
        {
            if (request != null)
            {
                request.Abort();
            }

            base.Abort();
        }