Hybrid Bridge
|
A readonly collection of the query string key, value pairs More...
Public Member Functions | |
HttpValueCollection (IList< HttpValue > list) | |
Creates a new instances of this class and fills it with a collection of HttpValue instances More... | |
bool | ContainsKey (string key) |
Goes through all query string pairs for the provided key More... | |
string[] | GetValues (string key) |
Gets values of all query string pairs matching the provided key More... | |
Properties | |
string | this[string key] [get] |
Gets the value of the first matching query string pair More... | |
A readonly collection of the query string key, value pairs
Definition at line 11 of file HttpValueCollection.cs.
HybridBridge.HttpTools.HttpValueCollection.HttpValueCollection | ( | IList< HttpValue > | list | ) |
Creates a new instances of this class and fills it with a collection of HttpValue instances
list | The list of HttpValue instances |
Definition at line 17 of file HttpValueCollection.cs.
bool HybridBridge.HttpTools.HttpValueCollection.ContainsKey | ( | string | key | ) |
Goes through all query string pairs for the provided key
key | The key to search for |
Definition at line 36 of file HttpValueCollection.cs.
string [] HybridBridge.HttpTools.HttpValueCollection.GetValues | ( | string | key | ) |
Gets values of all query string pairs matching the provided key
key | The key to search for |
Definition at line 46 of file HttpValueCollection.cs.
|
get |
Gets the value of the first matching query string pair
key |
Definition at line 26 of file HttpValueCollection.cs.