This topic has not yet been rated - Rate this topic

HttpContextWrapper Class

Encapsulates the HTTP intrinsic object that contains HTTP-specific information about an individual HTTP request.

System.Object
  System.Web.HttpContextBase
    System.Web.HttpContextWrapper

Namespace:  System.Web
Assembly:  System.Web (in System.Web.dll)
public class HttpContextWrapper : HttpContextBase

The HttpContextWrapper type exposes the following members.

  Name Description
Public method HttpContextWrapper Initializes a new instance of the HttpContextWrapper class by using the specified context object.
Top
  Name Description
Public property AllErrors Gets an array of errors (if any) that accumulated when an HTTP request was being processed. (Overrides HttpContextBase.AllErrors.)
Public property Application Gets the HttpApplicationState object for the current HTTP request. (Overrides HttpContextBase.Application.)
Public property ApplicationInstance Gets or sets the HttpApplication object for the current HTTP request. (Overrides HttpContextBase.ApplicationInstance.)
Public property Cache Gets the Cache object for the current application domain. (Overrides HttpContextBase.Cache.)
Public property CurrentHandler Gets the IHttpHandler object that represents the handler that is currently executing. (Overrides HttpContextBase.CurrentHandler.)
Public property CurrentNotification Gets a RequestNotification value that indicates the current HttpApplication event that is processing. (Overrides HttpContextBase.CurrentNotification.)
Public property Error Gets the first error (if any) that accumulated when an HTTP request was being processed. (Overrides HttpContextBase.Error.)
Public property Handler Gets or sets the IHttpHandler object that is responsible for processing the HTTP request. (Overrides HttpContextBase.Handler.)
Public property IsCustomErrorEnabled Gets a value that indicates whether custom errors are enabled for the current HTTP request. (Overrides HttpContextBase.IsCustomErrorEnabled.)
Public property IsDebuggingEnabled Gets a value that indicates whether the current HTTP request is in debug mode. (Overrides HttpContextBase.IsDebuggingEnabled.)
Public property IsPostNotification Gets a value that indicates whether an HttpApplication event has finished processing. (Overrides HttpContextBase.IsPostNotification.)
Public property Items Gets a key/value collection that can be used to organize and share data between a module and a handler during an HTTP request. (Overrides HttpContextBase.Items.)
Public property PreviousHandler Gets the IHttpHandler object for the parent handler. (Overrides HttpContextBase.PreviousHandler.)
Public property Profile Gets the ProfileBase object for the current user profile. (Overrides HttpContextBase.Profile.)
Public property Request Gets the HttpRequestBase object for the current HTTP request. (Overrides HttpContextBase.Request.)
Public property Response Gets the HttpResponseBase object for the current HTTP response. (Overrides HttpContextBase.Response.)
Public property Server Gets the HttpServerUtilityBase object that provides methods that are used when Web requests are being processed. (Overrides HttpContextBase.Server.)
Public property Session Gets the HttpSessionStateBase object for the current HTTP request. (Overrides HttpContextBase.Session.)
Public property SkipAuthorization Gets or sets a value that specifies whether the UrlAuthorizationModule object should skip the authorization check for the current request. (Overrides HttpContextBase.SkipAuthorization.)
Public property Timestamp Gets the initial timestamp of the current HTTP request. (Overrides HttpContextBase.Timestamp.)
Public property Trace Gets the TraceContext object for the current HTTP response. (Overrides HttpContextBase.Trace.)
Public property User Gets or sets security information for the current HTTP request. (Overrides HttpContextBase.User.)
Top
  Name Description
Public method AddError Adds an exception to the exception collection for the current HTTP request. (Overrides HttpContextBase.AddError(Exception).)
Public method ClearError Clears all errors for the current HTTP request. (Overrides HttpContextBase.ClearError().)
Public method Equals(Object) Determines whether the specified Object is equal to the current Object. (Inherited from Object.)
Protected method Finalize Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.)
Public method GetGlobalResourceObject(String, String) Gets an application-level resource object based on the specified ClassKey and ResourceKey properties. (Overrides HttpContextBase.GetGlobalResourceObject(String, String).)
Public method GetGlobalResourceObject(String, String, CultureInfo) Gets an application-level resource object based on the specified ClassKey and ResourceKey properties, and on the CultureInfo object. (Overrides HttpContextBase.GetGlobalResourceObject(String, String, CultureInfo).)
Public method GetHashCode Serves as a hash function for a particular type. (Inherited from Object.)
Public method GetLocalResourceObject(String, String) Gets a page-level resource object based on the specified VirtualPath and ResourceKey properties. (Overrides HttpContextBase.GetLocalResourceObject(String, String).)
Public method GetLocalResourceObject(String, String, CultureInfo) Gets a page-level resource object based on the specified VirtualPath and ResourceKey properties, and on the CultureInfo object. (Overrides HttpContextBase.GetLocalResourceObject(String, String, CultureInfo).)
Public method GetSection Gets the specified configuration section of the current application's default configuration. (Overrides HttpContextBase.GetSection(String).)
Public method GetService Returns an object for the current service type. (Overrides HttpContextBase.GetService(Type).)
Public method GetType Gets the Type of the current instance. (Inherited from Object.)
Protected method MemberwiseClone Creates a shallow copy of the current Object. (Inherited from Object.)
Public method RemapHandler Enables you to specify a handler for the request. (Overrides HttpContextBase.RemapHandler(IHttpHandler).)
Public method RewritePath(String) Rewrites the URL by using the specified path. (Overrides HttpContextBase.RewritePath(String).)
Public method RewritePath(String, Boolean) Rewrites the URL by using the specified path and a value that specifies whether the virtual path for server resources is modified. (Overrides HttpContextBase.RewritePath(String, Boolean).)
Public method RewritePath(String, String, String) Rewrites the URL by using the specified path, path information, and query string information. (Overrides HttpContextBase.RewritePath(String, String, String).)
Public method RewritePath(String, String, String, Boolean) Rewrites the URL by using the specified path, path information, query string information, and a value that specifies whether the client file path is set to the rewrite path. (Overrides HttpContextBase.RewritePath(String, String, String, Boolean).)
Public method SetSessionStateBehavior Sets the type of session state behavior that is required in order to support an HTTP request. (Overrides HttpContextBase.SetSessionStateBehavior(SessionStateBehavior).)
Public method ToString Returns a string that represents the current object. (Inherited from Object.)
Top

The HttpContextWrapper class derives from the HttpContextBase class and serves as a wrapper for the HttpContext class. This class exposes the functionality of the HttpContext class and also exposes the HttpContextBase type. The HttpContextBase class lets you replace the original implementation of the HttpContext class in your application with a custom implementation, such as when you perform unit testing outside the ASP.NET pipeline.

.NET Framework

Supported in: 4, 3.5 SP1

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Did you find this helpful?
(1500 characters remaining)
Community Content Add
Annotations FAQ