Adds the parameter with value to the url query, allowing for duplicate parameters.

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

Syntax

C#
public static string AddToUrlWithDuplicates(
	string url,
	string parameter,
	Object value
)
Visual Basic
Public Shared Function AddToUrlWithDuplicates ( 
	url As String,
	parameter As String,
	value As Object
) As String
Visual C++
public:
static String^ AddToUrlWithDuplicates(
	String^ url, 
	String^ parameter, 
	Object^ value
)
F#
static member AddToUrlWithDuplicates : 
        url : string * 
        parameter : string * 
        value : Object -> string 

Parameters

url
Type: System..::..String
Url to add the query parameter to
parameter
Type: System..::..String
Url query parameter
value
Type: System..::..Object
Url query parameter value

Return Value

Type: String
Url with parameter included in the query portion.

Remarks

The parameter will be added to the query string even if the same parameter already exists.

See Also