C# Class Pcc.PccHandler

This is the base class for PCC request handlers.
ファイルを表示 Open project: Accusoft/PCC-Viewer-CSharp-Database-Demo

Public Methods

Method Description
ProcessRequest ( HttpContext context, Match match ) : void

Protected Methods

Method Description
GetStringFromUrl ( HttpContext context, Match match, string parameterName ) : string

Tries to extract the document identification string from the url requested and return that string.

Method Details

GetStringFromUrl() protected method

Tries to extract the document identification string from the url requested and return that string.
protected GetStringFromUrl ( HttpContext context, Match match, string parameterName ) : string
context System.Web.HttpContext Current HTTP context
match System.Text.RegularExpressions.Match Matching parameter found for the url being requested.
parameterName string Parameter name that is being matched or looked for to get its content or value
return string

ProcessRequest() public abstract method

public abstract ProcessRequest ( HttpContext context, Match match ) : void
context System.Web.HttpContext
match System.Text.RegularExpressions.Match
return void