Generates URL in the format that is suitable to be used in the personalization system, taking into account varyByParams and varyByCustom settings.

Namespace: MonoSoftware.MonoX
Assembly: MonoX (in MonoX.dll) Version: 5.1.40.5065 (5.1.40.5065)

Syntax

C#
protected string GeneratePersonalizationUrl(
	string path,
	NameValueCollection parameters
)
Visual Basic
Protected Function GeneratePersonalizationUrl ( 
	path As String,
	parameters As NameValueCollection
) As String
Visual C++
protected:
String^ GeneratePersonalizationUrl(
	String^ path, 
	NameValueCollection^ parameters
)
F#
member GeneratePersonalizationUrl : 
        path : string * 
        parameters : NameValueCollection -> string 

Parameters

path
Type: System..::..String
Path part of the full URL.
parameters
Type: System.Collections.Specialized..::..NameValueCollection
Query parameters.

Return Value

Type: String
Formatted URL.

See Also