OpenTween.HttpConnectionOAuth.RequestAbort C# (CSharp) 메소드

RequestAbort() 공개 메소드

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