Table of Contents

Class QueryHelpers

Namespace
NetCoreForce.Client
Assembly
NetCoreForce.Client.dll
public static class QueryHelpers
Inheritance
QueryHelpers
Inherited Members

Methods

AddQueryString(string, IDictionary<string, string>)

Append the given query keys and values to the uri.

public static string AddQueryString(string uri, IDictionary<string, string> queryString)

Parameters

uri string

The base uri.

queryString IDictionary<string, string>

A collection of name value query pairs to append.

Returns

string

The combined result.

AddQueryString(string, string, string)

Append the given query key and value to the URI.

public static string AddQueryString(string uri, string name, string value)

Parameters

uri string

The base URI.

name string

The name of the query key.

value string

The query value.

Returns

string

The combined result.