Class ParameterCollection (1.50.0)

public class ParameterCollection : List<KeyValuePair<string, string>>

A collection of parameters (key value pairs). May contain duplicate keys.

Inheritance

Object > ParameterCollection

Namespace

Google.Apis.Requests.Parameters

Assembly

Google.Apis.Core.dll

Constructors

ParameterCollection()

public ParameterCollection()

Constructs a new parameter collection.

ParameterCollection(IEnumerable<KeyValuePair<String, String>>)

public ParameterCollection(IEnumerable<KeyValuePair<string, string>> collection)

Constructs a new parameter collection from the given collection.

Parameter
NameDescription
collectionIEnumerable<KeyValuePair<String, String>>

Properties

Item[String]

public IEnumerable<string> this[string key] { get; }

Returns all matches for the specified key. May return an empty enumeration if the key is not present.

Parameter
NameDescription
keyString
Property Value
TypeDescription
IEnumerable<String>

Methods

Add(String, String)

public void Add(string key, string value)

Adds a single parameter to this collection.

Parameters
NameDescription
keyString
valueString

ContainsKey(String)

public bool ContainsKey(string key)

Returns true if this parameter is set within the collection.

Parameter
NameDescription
keyString
Returns
TypeDescription
Boolean

FromDictionary(IDictionary<String, Object>)

public static ParameterCollection FromDictionary(IDictionary<string, object> dictionary)

Creates a parameter collection from the specified dictionary. If the value is an enumerable, a parameter pair will be added for each value. Otherwise the value will be converted into a string using the .ToString() method.

Parameter
NameDescription
dictionaryIDictionary<String, Object>
Returns
TypeDescription
ParameterCollection

FromQueryString(String)

public static ParameterCollection FromQueryString(string qs)

Creates a parameter collection from the specified URL encoded query string. Example: The query string "foo=bar&chocolate=cookie" would result in two parameters (foo and bar) with the values "bar" and "cookie" set.

Parameter
NameDescription
qsString
Returns
TypeDescription
ParameterCollection

GetAllMatches(String)

public IEnumerable<string> GetAllMatches(string key)

Returns all matches for the specified key. May return an empty enumeration if the key is not present.

Parameter
NameDescription
keyString
Returns
TypeDescription
IEnumerable<String>

GetFirstMatch(String)

public string GetFirstMatch(string key)

Returns the value of the first matching key, or throws a KeyNotFoundException if the parameter is not present within the collection.

Parameter
NameDescription
keyString
Returns
TypeDescription
String

TryGetValue(String, out String)

public bool TryGetValue(string key, out string value)

Tries to find the a key within the specified key value collection. Returns true if the key was found. If a pair was found the out parameter value will contain the value of that pair.

Parameters
NameDescription
keyString
valueString
Returns
TypeDescription
Boolean

Extension Method