Click or drag to resize

SavedFilterExtractFilterFromReq 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: NetQuarryIAppContext
The application context.
req
Type: System.WebHttpRequest
The HTTP request object.
name
Type: SystemString
The name of the request parameter.

Return Value

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