C# Class HttpInterfaces.HttpContextProxy

Inheritance: IHttpContext
ファイルを表示 Open project: JonKruger/HttpInterfaces

Public Methods

Method Description
AddError ( Exception errorInfo ) : void
ClearError ( ) : void
GetInternalHttpContext ( ) : HttpContext

Get the concrete HttpContext object that is wrapped by this wrapper class.

GetSection ( string sectionName ) : object
HttpContextProxy ( HttpContext httpContext ) : System
RewritePath ( string path ) : void
RewritePath ( string path, bool rebaseClientPath ) : void
RewritePath ( string filePath, string pathInfo, string queryString ) : void
RewritePath ( string filePath, string pathInfo, string queryString, bool setClientFilePath ) : void

Method Details

AddError() public method

public AddError ( Exception errorInfo ) : void
errorInfo System.Exception
return void

ClearError() public method

public ClearError ( ) : void
return void

GetInternalHttpContext() public method

Get the concrete HttpContext object that is wrapped by this wrapper class.
public GetInternalHttpContext ( ) : HttpContext
return System.Web.HttpContext

GetSection() public method

public GetSection ( string sectionName ) : object
sectionName string
return object

HttpContextProxy() public method

public HttpContextProxy ( HttpContext httpContext ) : System
httpContext System.Web.HttpContext
return System

RewritePath() public method

public RewritePath ( string path ) : void
path string
return void

RewritePath() public method

public RewritePath ( string path, bool rebaseClientPath ) : void
path string
rebaseClientPath bool
return void

RewritePath() public method

public RewritePath ( string filePath, string pathInfo, string queryString ) : void
filePath string
pathInfo string
queryString string
return void

RewritePath() public method

public RewritePath ( string filePath, string pathInfo, string queryString, bool setClientFilePath ) : void
filePath string
pathInfo string
queryString string
setClientFilePath bool
return void