Click or drag to resize
IHttpContext Interface
Encapsulates all HTTP-specific information about an individual HTTP request.

Namespace: CMS.Base
Assembly: CMS.Base (in CMS.Base.dll) Version: 12.0.0
Syntax
C#
public interface IHttpContext

The IHttpContext type exposes the following members.

Properties
  NameDescription
Public propertyApplicationInstance
Gets the IHttpApplication object for the current HTTP request.
Public propertyItems
Gets a key/value collection that can be used to organize and share data during an HTTP request.
Public propertyRequest
Gets the IRequest object for the current HTTP request.
Public propertyResponse
Gets the IResponse object for the current HTTP response.
Public propertyServer
Gets the IServer object that provides methods used in processing Web requests on server.
Public propertySession
Gets the ISession object for the current HTTP request.
Public propertyUser
Gets the IPrincipal object for the current HTTP request.
Top
See Also