Constructs and returns a URL by calling SelectDimensionValue(DimensionValue) with the specified DimensionValue on a copy of the NavigationCommand with the specified ID.

Namespace:  Endeca.Web.Url
Assembly:  Endeca.Web (in Endeca.Web.dll) Version: 2.1.3.0 (2.1.3.622)

Syntax

C#
public string SelectDimensionValue(
	string commandID,
	Object oDimensionValue,
	Action<NameValueCollection> parametersAction
)
Visual Basic (Declaration)
Public Function SelectDimensionValue ( _
	commandID As String, _
	oDimensionValue As Object, _
	parametersAction As Action(Of NameValueCollection) _
) As String
Visual C++
public:
String^ SelectDimensionValue(
	String^ commandID, 
	Object^ oDimensionValue, 
	Action<NameValueCollection^>^ parametersAction
)

Parameters

commandID
Type: System..::.String
ID of the NavigationCommand or NavigationDataSource to copy.
oDimensionValue
Type: System..::.Object
DimensionValue to select.
parametersAction
Type: System..::.Action<(Of <(NameValueCollection>)>)
Delegate representing desired changes to the Parameters to include in the URL. May be null.

Exceptions

ExceptionCondition
System..::.ArgumentException if commandID is null or empty, or if oDimensionValue is null or is not a DimensionValue instance.

See Also