Class NameValueCollectionUtility
This utility class provides a set of concrete static methods for supporting the EnumerableUtility.
Inheritance
System.Object
NameValueCollectionUtility
Namespace: Cuemon.Collections.Specialized
Assembly: Cuemon.Collections.Specialized.dll
Syntax
public static class NameValueCollectionUtility
Methods
| Improve this DocContainsKey(NameValueCollection, String)
Determines whether the specified c
contains an entry with the specified key
.
Declaration
public static bool ContainsKey(NameValueCollection c, string key)
Parameters
Type | Name | Description |
---|---|---|
System.Collections.Specialized.NameValueCollection | c | The System.Collections.Specialized.NameValueCollection to search for |
System.String | key | The key to locate in |
Returns
Type | Description |
---|---|
System.Boolean |
|
Remarks
This method performs an System.StringComparison.OrdinalIgnoreCase search for key
.