Click or drag to resize

SavedFilter.ExtractFilterFromReq Method (IAppContext, HttpRequest, String)

Extract any general filter clause from the named HTTP request parameter. See ExtractFilterFromReq(IAppContext, HttpRequest, String, SavedFilter) for more information. Note that calling this overload is the same as calling the ExtractFilterFromReq(IAppContext, HttpRequest) overload specifying 'flt' as the name value.

Namespace:  NetQuarry
Assembly:  EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax
public static string ExtractFilterFromReq(
	IAppContext cxt,
	HttpRequest req,
	string name
)

Parameters

cxt
Type: NetQuarry.IAppContext
The application context.
req
Type: System.Web.HttpRequest
The HTTP request object.
name
Type: System.String
The name of the request parameter.

Return Value

Type: String
The extracted filter or null if not found.
See Also