IDictionary(String, SemanticValue).Keys Property

Microsoft Speech Platform SDK 11

Collapse imageExpand ImageCopy imageCopyHover image

Gets a collection that contains the keys from a dictionary of key/value pairs.

Namespace:  Microsoft.Speech.Recognition
Assembly:  Microsoft.Speech (in Microsoft.Speech.dll)

Syntax

Visual Basic (Declaration)
Private ReadOnly Property Keys As ICollection(Of String)
	Implements IDictionary(Of String, SemanticValue).Keys
	Get
Visual Basic (Usage)
Dim instance As SemanticValue
Dim value As ICollection(Of String)

value = CType(instance, IDictionary(Of String, SemanticValue)).Keys
C#
ICollection<string> IDictionary<string, SemanticValue>.Keys { get; }

Property Value

Type: System.Collections.Generic..::..ICollection<(Of <(<'String>)>)>

Returns a collection that contains the keys from a dictionary of key/value pairs.

Implements

IDictionary<(Of <(<'TKey, TValue>)>)>..::..Keys

See Also