UrlBuilderBuildUrl Method

Builds the URL with the specified path and arguments.

Definition

Namespace: SMath.Manager.Network
Assembly: SMath.Manager (in SMath.Manager.dll) Version: 1.2.9018.0
C#
protected string BuildUrl(
	string baseUrl,
	string path = null,
	Dictionary<string, string> args = null
)

Parameters

baseUrl  String
Base URL to start with.
path  String  (Optional)
Path to append to baseUrl. Specify or Empty if there is no path to append.
args  DictionaryString, String  (Optional)
Arguments to append to baseUrl. Specify or empty collection if there are no arguments to append.

Return Value

String
The resulting URL.

See Also