HttpContextWrapper.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ DotNET / DotNET / 8.0 / untmp / Orcas / RTM / ndp / fx / src / xsp / System / Web / Extensions / ui / HttpContextWrapper.cs / 1 / HttpContextWrapper.cs

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

namespace System.Web.UI { 
    using System; 
    using System.Collections;
    using System.Web; 
    using System.Diagnostics;

    internal sealed class HttpContextWrapper : IHttpContext {
        private readonly HttpContext _context; 

        public HttpContextWrapper(HttpContext context) { 
            Debug.Assert(context != null); 
            _context = context;
        } 

        #region IHttpContext Members
        bool IHttpContext.IsCustomErrorEnabled {
            get { 
                return _context.IsCustomErrorEnabled;
            } 
        } 

        IHttpRequest IHttpContext.Request { 
            get {
                return new HttpRequestWrapper(_context.Request);
            }
        } 

        IDictionary IHttpContext.Items { 
            get { 
                return _context.Items;
            } 
        }
        #endregion
    }
} 

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


                        

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