Ext.Net.DirectResponse.Return C# (CSharp) Method

Return() private method

private Return ( ) : void
return void
        public virtual void Return()
        {
            if (!this.IsUpload && !this.NativeUpload)
            {
                CompressionUtils.GZipAndSend(this);
            }
            else
            {
                HttpContext.Current.Response.Write(this.ToString());
            }
        }