Checks whether given IDictionary<(Of <(TKey, TValue>)>) of UrlParams, keyed by parameter name, contains an aggregate record details query.

Namespace:  Endeca.Web.Url.Seo.Utility
Assembly:  Endeca.Web.Url.Seo (in Endeca.Web.Url.Seo.dll) Version: 2.1.1.0 (2.1.1.0)

Syntax

C#
public static bool ContainsAggregateRecordDetailsQuery(
	IDictionary<string, UrlParam> urlParams
)
Visual Basic (Declaration)
Public Shared Function ContainsAggregateRecordDetailsQuery ( _
	urlParams As IDictionary(Of String, UrlParam) _
) As Boolean
Visual C++
public:
static bool ContainsAggregateRecordDetailsQuery(
	IDictionary<String^, UrlParam^>^ urlParams
)

Parameters

urlParams
Type: System.Collections.Generic..::.IDictionary<(Of <(String, UrlParam>)>)
URL parameters.

Return Value

Returns boolean indicating whether there is an aggregate record details query present in the given URL parameters.

See Also