C# Class Glyma.SharePoint.Search.INamedPropertyDictionaryExtensions

Mostra file Open project: chris-tomich/Glyma

Public Methods

Method Description
ContainsKey ( this properties, string key, System.StringComparison comparisonType ) : bool

Checks the existence of a key within a INamedPropertyDictionary object using a specific string comparer.

GetByKey ( this properties, string key, System.StringComparison comparisonType ) : object

Gets a property value from a INamedPropertyDictionary object using a key and a specific string comparer to examine the keys.

Method Details

ContainsKey() public static method

Checks the existence of a key within a INamedPropertyDictionary object using a specific string comparer.
public static ContainsKey ( this properties, string key, System.StringComparison comparisonType ) : bool
properties this
key string The key to search for.
comparisonType System.StringComparison The string comparer to use to compare the keys.
return bool

GetByKey() public static method

Gets a property value from a INamedPropertyDictionary object using a key and a specific string comparer to examine the keys.
public static GetByKey ( this properties, string key, System.StringComparison comparisonType ) : object
properties this A INamedPropertyDictionary object to be searched.
key string The key to search for.
comparisonType System.StringComparison The string comparer to use to compare the keys.
return object