Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / Abstractions / HttpContextWrapper.cs / 1305376 / HttpContextWrapper.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web { using System.Collections; using System.Diagnostics.CodeAnalysis; using System.Globalization; using System.Security.Principal; using System.Web.Caching; using System.Web.Profile; using System.Web.SessionState; using System.Runtime.CompilerServices; [TypeForwardedFrom("System.Web.Abstractions, Version=3.5.0.0, Culture=Neutral, PublicKeyToken=31bf3856ad364e35")] public class HttpContextWrapper : HttpContextBase { private readonly HttpContext _context; public HttpContextWrapper(HttpContext httpContext) { if (httpContext == null) { throw new ArgumentNullException("httpContext"); } _context = httpContext; } public override Exception[] AllErrors { get { return _context.AllErrors; } } public override HttpApplicationStateBase Application { get { return new HttpApplicationStateWrapper(_context.Application); } } // public override HttpApplication ApplicationInstance { get { return _context.ApplicationInstance; } set { _context.ApplicationInstance = value; } } // public override Cache Cache { get { return _context.Cache; } } public override IHttpHandler CurrentHandler { get { return _context.CurrentHandler; } } public override RequestNotification CurrentNotification { get { return _context.CurrentNotification; } } public override Exception Error { get { return _context.Error; } } public override IHttpHandler Handler { get { return _context.Handler; } set { _context.Handler = value; } } public override bool IsCustomErrorEnabled { get { return _context.IsCustomErrorEnabled; } } public override bool IsDebuggingEnabled { get { return _context.IsDebuggingEnabled; } } public override bool IsPostNotification { get { return _context.IsDebuggingEnabled; } } public override IDictionary Items { get { return _context.Items; } } public override IHttpHandler PreviousHandler { get { return _context.PreviousHandler; } } // public override ProfileBase Profile { get { return _context.Profile; } } public override HttpRequestBase Request { get { return new HttpRequestWrapper(_context.Request); } } public override HttpResponseBase Response { get { return new HttpResponseWrapper(_context.Response); } } public override HttpServerUtilityBase Server { get { return new HttpServerUtilityWrapper(_context.Server); } } public override HttpSessionStateBase Session { get { HttpSessionState session = _context.Session; return (session != null) ? new HttpSessionStateWrapper(session) : null; } } public override bool SkipAuthorization { get { return _context.SkipAuthorization; } set { _context.SkipAuthorization = value; } } public override DateTime Timestamp { get { return _context.Timestamp; } } // public override TraceContext Trace { get { return _context.Trace; } } public override IPrincipal User { get { return _context.User; } set { _context.User = value; } } public override void AddError(Exception errorInfo) { _context.AddError(errorInfo); } public override void ClearError() { _context.ClearError(); } [SuppressMessage("Microsoft.Globalization", "CA1304:SpecifyCultureInfo", Justification = "Matches HttpContext class")] public override object GetGlobalResourceObject(string classKey, string resourceKey) { return HttpContext.GetGlobalResourceObject(classKey, resourceKey); } public override object GetGlobalResourceObject(string classKey, string resourceKey, CultureInfo culture) { return HttpContext.GetGlobalResourceObject(classKey, resourceKey, culture); } [SuppressMessage("Microsoft.Globalization", "CA1304:SpecifyCultureInfo", Justification = "Matches HttpContext class")] public override object GetLocalResourceObject(string virtualPath, string resourceKey) { return HttpContext.GetLocalResourceObject(virtualPath, resourceKey); } public override object GetLocalResourceObject(string virtualPath, string resourceKey, CultureInfo culture) { return HttpContext.GetLocalResourceObject(virtualPath, resourceKey, culture); } public override object GetSection(string sectionName) { return _context.GetSection(sectionName); } public override void RemapHandler(IHttpHandler handler) { _context.RemapHandler(handler); } public override void RewritePath(string path) { _context.RewritePath(path); } public override void RewritePath(string path, bool rebaseClientPath) { _context.RewritePath(path, rebaseClientPath); } public override void RewritePath(string filePath, string pathInfo, string queryString) { _context.RewritePath(filePath, pathInfo, queryString); } public override void RewritePath(string filePath, string pathInfo, string queryString, bool setClientFilePath) { _context.RewritePath(filePath, pathInfo, queryString, setClientFilePath); } public override void SetSessionStateBehavior(SessionStateBehavior sessionStateBehavior) { _context.SetSessionStateBehavior(sessionStateBehavior); } public override object GetService(Type serviceType) { return ((IServiceProvider)_context).GetService(serviceType); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web { using System.Collections; using System.Diagnostics.CodeAnalysis; using System.Globalization; using System.Security.Principal; using System.Web.Caching; using System.Web.Profile; using System.Web.SessionState; using System.Runtime.CompilerServices; [TypeForwardedFrom("System.Web.Abstractions, Version=3.5.0.0, Culture=Neutral, PublicKeyToken=31bf3856ad364e35")] public class HttpContextWrapper : HttpContextBase { private readonly HttpContext _context; public HttpContextWrapper(HttpContext httpContext) { if (httpContext == null) { throw new ArgumentNullException("httpContext"); } _context = httpContext; } public override Exception[] AllErrors { get { return _context.AllErrors; } } public override HttpApplicationStateBase Application { get { return new HttpApplicationStateWrapper(_context.Application); } } // public override HttpApplication ApplicationInstance { get { return _context.ApplicationInstance; } set { _context.ApplicationInstance = value; } } // public override Cache Cache { get { return _context.Cache; } } public override IHttpHandler CurrentHandler { get { return _context.CurrentHandler; } } public override RequestNotification CurrentNotification { get { return _context.CurrentNotification; } } public override Exception Error { get { return _context.Error; } } public override IHttpHandler Handler { get { return _context.Handler; } set { _context.Handler = value; } } public override bool IsCustomErrorEnabled { get { return _context.IsCustomErrorEnabled; } } public override bool IsDebuggingEnabled { get { return _context.IsDebuggingEnabled; } } public override bool IsPostNotification { get { return _context.IsDebuggingEnabled; } } public override IDictionary Items { get { return _context.Items; } } public override IHttpHandler PreviousHandler { get { return _context.PreviousHandler; } } // public override ProfileBase Profile { get { return _context.Profile; } } public override HttpRequestBase Request { get { return new HttpRequestWrapper(_context.Request); } } public override HttpResponseBase Response { get { return new HttpResponseWrapper(_context.Response); } } public override HttpServerUtilityBase Server { get { return new HttpServerUtilityWrapper(_context.Server); } } public override HttpSessionStateBase Session { get { HttpSessionState session = _context.Session; return (session != null) ? new HttpSessionStateWrapper(session) : null; } } public override bool SkipAuthorization { get { return _context.SkipAuthorization; } set { _context.SkipAuthorization = value; } } public override DateTime Timestamp { get { return _context.Timestamp; } } // public override TraceContext Trace { get { return _context.Trace; } } public override IPrincipal User { get { return _context.User; } set { _context.User = value; } } public override void AddError(Exception errorInfo) { _context.AddError(errorInfo); } public override void ClearError() { _context.ClearError(); } [SuppressMessage("Microsoft.Globalization", "CA1304:SpecifyCultureInfo", Justification = "Matches HttpContext class")] public override object GetGlobalResourceObject(string classKey, string resourceKey) { return HttpContext.GetGlobalResourceObject(classKey, resourceKey); } public override object GetGlobalResourceObject(string classKey, string resourceKey, CultureInfo culture) { return HttpContext.GetGlobalResourceObject(classKey, resourceKey, culture); } [SuppressMessage("Microsoft.Globalization", "CA1304:SpecifyCultureInfo", Justification = "Matches HttpContext class")] public override object GetLocalResourceObject(string virtualPath, string resourceKey) { return HttpContext.GetLocalResourceObject(virtualPath, resourceKey); } public override object GetLocalResourceObject(string virtualPath, string resourceKey, CultureInfo culture) { return HttpContext.GetLocalResourceObject(virtualPath, resourceKey, culture); } public override object GetSection(string sectionName) { return _context.GetSection(sectionName); } public override void RemapHandler(IHttpHandler handler) { _context.RemapHandler(handler); } public override void RewritePath(string path) { _context.RewritePath(path); } public override void RewritePath(string path, bool rebaseClientPath) { _context.RewritePath(path, rebaseClientPath); } public override void RewritePath(string filePath, string pathInfo, string queryString) { _context.RewritePath(filePath, pathInfo, queryString); } public override void RewritePath(string filePath, string pathInfo, string queryString, bool setClientFilePath) { _context.RewritePath(filePath, pathInfo, queryString, setClientFilePath); } public override void SetSessionStateBehavior(SessionStateBehavior sessionStateBehavior) { _context.SetSessionStateBehavior(sessionStateBehavior); } public override object GetService(Type serviceType) { return ((IServiceProvider)_context).GetService(serviceType); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- StaticDataManager.cs
- ClientTargetCollection.cs
- AxHost.cs
- PreloadedPackages.cs
- RectangleConverter.cs
- ReadOnlyMetadataCollection.cs
- CodeDOMUtility.cs
- SecurityManager.cs
- AuthorizationRuleCollection.cs
- AutoCompleteStringCollection.cs
- StretchValidation.cs
- CoTaskMemSafeHandle.cs
- Rectangle.cs
- DoubleAnimationUsingPath.cs
- SemanticResultValue.cs
- handlecollector.cs
- TriState.cs
- Peer.cs
- SyndicationSerializer.cs
- SubclassTypeValidatorAttribute.cs
- GridViewItemAutomationPeer.cs
- SystemUnicastIPAddressInformation.cs
- CookieProtection.cs
- Rect3D.cs
- TextBoxBase.cs
- PageCatalogPart.cs
- SamlEvidence.cs
- XsdBuilder.cs
- SimpleWorkerRequest.cs
- TextureBrush.cs
- OutputWindow.cs
- WindowsListViewGroupHelper.cs
- WebResponse.cs
- EventHandlersDesigner.cs
- SecurityValidationBehavior.cs
- IFormattable.cs
- TreeNodeSelectionProcessor.cs
- ColumnWidthChangingEvent.cs
- HtmlInputControl.cs
- ErrorWrapper.cs
- DataBoundControlHelper.cs
- KeyMatchBuilder.cs
- ServiceModelReg.cs
- HMACSHA1.cs
- UserValidatedEventArgs.cs
- MethodBody.cs
- InvalidFilterCriteriaException.cs
- Oid.cs
- _ConnectionGroup.cs
- SplitterEvent.cs
- MultiSelector.cs
- CodeCompileUnit.cs
- ItemAutomationPeer.cs
- WebControlToolBoxItem.cs
- FieldMetadata.cs
- UserControlAutomationPeer.cs
- Light.cs
- _TLSstream.cs
- Figure.cs
- ReadOnlyAttribute.cs
- DateTimeOffset.cs
- IListConverters.cs
- ListChangedEventArgs.cs
- NameService.cs
- TextSelectionHighlightLayer.cs
- SizeIndependentAnimationStorage.cs
- AnimatedTypeHelpers.cs
- Int64KeyFrameCollection.cs
- ExceptionHelpers.cs
- ECDiffieHellman.cs
- ExtensionsSection.cs
- MailDefinition.cs
- ToolStripOverflowButton.cs
- XmlDataSource.cs
- SiteMapDataSource.cs
- AsyncPostBackTrigger.cs
- TransformPatternIdentifiers.cs
- ListView.cs
- WebPartConnectionCollection.cs
- EntityDataSourceSelectingEventArgs.cs
- ViewKeyConstraint.cs
- ClientCultureInfo.cs
- PrivacyNoticeBindingElement.cs
- DataChangedEventManager.cs
- WindowsImpersonationContext.cs
- ActivityDesigner.cs
- Int32Animation.cs
- HttpPostClientProtocol.cs
- ForeignKeyConstraint.cs
- TextParagraphProperties.cs
- Rectangle.cs
- AddInController.cs
- XmlReflectionMember.cs
- XmlStreamStore.cs
- GlobalAllocSafeHandle.cs
- TabItem.cs
- StorageModelBuildProvider.cs
- AdPostCacheSubstitution.cs
- WCFServiceClientProxyGenerator.cs
- AxParameterData.cs