HttpRawResponse.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / HttpRawResponse.cs / 1305376 / HttpRawResponse.cs

                            //------------------------------------------------------------------------------ 
// 
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// 
//----------------------------------------------------------------------------- 

/* 
 * Lean representation of response data 
 *
 * Copyright (c) 1998 Microsoft Corporation 
 */

namespace System.Web {
 
    using System.Collections;
 
    internal class HttpRawResponse { 
        private int _statusCode;
        private String _statusDescr; 
        private ArrayList _headers;
        private ArrayList _buffers;
        private bool _hasSubstBlocks;
 
        internal HttpRawResponse(int statusCode, string statusDescription, ArrayList headers, ArrayList buffers, bool hasSubstBlocks) {
            _statusCode = statusCode; 
            _statusDescr = statusDescription; 
            _headers = headers;
            _buffers = buffers; 
            _hasSubstBlocks = hasSubstBlocks;
        }

        internal int StatusCode { 
            get { return _statusCode;}
        } 
 
        internal String StatusDescription {
            get { return _statusDescr;} 
        }

        // list of HttpResponseHeader objects
        internal ArrayList Headers { 
            get { return _headers;}
        } 
 
        // list of IHttpResponseElement objects
        internal ArrayList Buffers { 
            get {
                return _buffers;
            }
        } 

        internal bool HasSubstBlocks { 
            get { return _hasSubstBlocks;} 
        }
    } 
}

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
//------------------------------------------------------------------------------ 
// 
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// 
//----------------------------------------------------------------------------- 

/* 
 * Lean representation of response data 
 *
 * Copyright (c) 1998 Microsoft Corporation 
 */

namespace System.Web {
 
    using System.Collections;
 
    internal class HttpRawResponse { 
        private int _statusCode;
        private String _statusDescr; 
        private ArrayList _headers;
        private ArrayList _buffers;
        private bool _hasSubstBlocks;
 
        internal HttpRawResponse(int statusCode, string statusDescription, ArrayList headers, ArrayList buffers, bool hasSubstBlocks) {
            _statusCode = statusCode; 
            _statusDescr = statusDescription; 
            _headers = headers;
            _buffers = buffers; 
            _hasSubstBlocks = hasSubstBlocks;
        }

        internal int StatusCode { 
            get { return _statusCode;}
        } 
 
        internal String StatusDescription {
            get { return _statusDescr;} 
        }

        // list of HttpResponseHeader objects
        internal ArrayList Headers { 
            get { return _headers;}
        } 
 
        // list of IHttpResponseElement objects
        internal ArrayList Buffers { 
            get {
                return _buffers;
            }
        } 

        internal bool HasSubstBlocks { 
            get { return _hasSubstBlocks;} 
        }
    } 
}

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.

                        

Link Menu

Network programming in C#, Network Programming in VB.NET, Network Programming in .NET
This book is available now!
Buy at Amazon US or
Buy at Amazon UK