 | ConfigurationDictionaryTKey, TValueContains Method |
Determines whether the
ICollectionT contains a specific value.
Namespace: SanteDB.Client.ConfigurationAssembly: SanteDB.Client (in SanteDB.Client.dll) Version: 3.0.2081-alpha+027e4605b77f83de5445cbcd55717223932d2452
Syntaxpublic bool Contains(
KeyValuePair<TKey, TValue> item
)
Public Function Contains (
item As KeyValuePair(Of TKey, TValue)
) As Boolean
public:
virtual bool Contains(
KeyValuePair<TKey, TValue> item
) sealed
abstract Contains :
item : KeyValuePair<'TKey, 'TValue> -> bool
override Contains :
item : KeyValuePair<'TKey, 'TValue> -> bool Parameters
- item KeyValuePairTKey, TValue
- The object to locate in the ICollectionT.
Return Value
Boolean if
item is found in the
ICollectionT; otherwise,
.
Implements
ICollectionTContains(T)
See Also