OpenTween.HttpConnectionOAuth.RequestAbort C# (CSharp) Method

RequestAbort() public method

public RequestAbort ( ) : void
return void
        public void RequestAbort()
        {
            try
            {
                if ( this.streamReq != null )
                {
                    this.streamReq.Abort();
                    this.streamReq = null;
                }
            }
            catch ( Exception ) {}
        }