C-DEngine 5.105

TheCommonUtils..::..ParseQueryString Method

Parse a web address for parameters.

Namespace:  nsCDEngine.BaseClasses
Assembly:  C-DEngine (in C-DEngine.dll)

Syntax


public static Dictionary<string, string> ParseQueryString(
	string query
)
Public Shared Function ParseQueryString ( _
	query As String _
) As Dictionary(Of String, String)
public:
static Dictionary<String^, String^>^ ParseQueryString(
	String^ query
)

Parameters

query
Type: String
The query string to parse.

Return Value

A keys and values collection.

Remarks


Parse the query string in the URI into a KeyValuePair<string, string> collection. The keys and values will be URL decoded.