C# Class Nvelope.NameValueCollectionExtensions

Show file Open project: TrinityWestern/Nvelope

Public Methods

Method Description
ContainsKey ( this collection, string key ) : bool
Enumerate ( this keys ) : IEnumerable
Except ( this collection ) : string>.Dictionary

Returns a new dictionary that excludes specific keys

Except ( this collection, IEnumerable keysToExclude ) : string>.Dictionary

Returns a new dictionary that excludes specific keys

Print ( this collection ) : string
ToDictionary ( this collection ) : string>.Dictionary
ToNameValueCollection ( this source, string keyValueSeparator, string itemSeparator ) : NameValueCollection

Method Details

ContainsKey() public static method

public static ContainsKey ( this collection, string key ) : bool
collection this
key string
return bool

Enumerate() public static method

public static Enumerate ( this keys ) : IEnumerable
keys this
return IEnumerable

Except() public static method

Returns a new dictionary that excludes specific keys
public static Except ( this collection ) : string>.Dictionary
collection this
return string>.Dictionary

Except() public static method

Returns a new dictionary that excludes specific keys
public static Except ( this collection, IEnumerable keysToExclude ) : string>.Dictionary
collection this
keysToExclude IEnumerable
return string>.Dictionary

Print() public static method

public static Print ( this collection ) : string
collection this
return string

ToDictionary() public static method

public static ToDictionary ( this collection ) : string>.Dictionary
collection this
return string>.Dictionary

ToNameValueCollection() public static method

public static ToNameValueCollection ( this source, string keyValueSeparator, string itemSeparator ) : NameValueCollection
source this
keyValueSeparator string
itemSeparator string
return System.Collections.Specialized.NameValueCollection