System.Net.Browser.ClientHttpWebRequestInternal.Abort C# (CSharp) 메소드

Abort() 공개 메소드

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

Usage Example

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

            base.Abort();
        }