ReadAll() private method

private ReadAll ( ) : void
return void
Esempio n. 1
0
        internal void ReadAll()
        {
            WebConnectionStream wce = stream as WebConnectionStream;

            if (wce == null)
            {
                return;
            }

            try {
                wce.ReadAll();
            } catch {}
        }
Esempio n. 2
0
        internal void ReadAll()
        {
            WebConnectionStream webConnectionStream = stream as WebConnectionStream;

            if (webConnectionStream != null)
            {
                try
                {
                    webConnectionStream.ReadAll();
                }
                catch
                {
                }
            }
        }
Esempio n. 3
0
        internal void ReadAll()
        {
            WebConnectionStream webConnectionStream = this.stream as WebConnectionStream;

            if (webConnectionStream == null)
            {
                return;
            }
            try
            {
                webConnectionStream.ReadAll();
            }
            catch
            {
            }
        }