Click or drag to resize
DeviceMetadata Class
Metadata about the end-user device that is collecting audio. This metadata is used by the Microsoft Speech Service to help improve the quality of service for the user.
Inheritance Hierarchy
SystemObject
  Microsoft.Bing.SpeechDeviceMetadata

Namespace:  Microsoft.Bing.Speech
Assembly:  Microsoft.Bing.Speech (in Microsoft.Bing.Speech.dll) Version: 2.0.1.0 (2.0.1)
Syntax
public sealed class DeviceMetadata

The DeviceMetadata type exposes the following members.

Constructors
  NameDescription
Public methodDeviceMetadata
Initializes a new instance of the DeviceMetadata class.
Top
Properties
  NameDescription
Public propertyFamily
Gets the end-user device family.
Public propertyMake
Gets the end-user device make.
Public propertyModel
Gets the end-user device model.
Public propertyNetworkType
Gets the end-user device network type.
Public propertyOsName
Gets the end-user device operating system name.
Public propertyOsVersion
Gets the end-user device operating system version.
Public propertyType
Gets the end-user device type.
Top
Examples
var deviceMetadata = new DeviceMetadata(DeviceType.Near, DeviceFamily.Desktop, NetworkType.Ethernet, OsName.Windows, "1607", "Dell", "T3600");
See Also