Click or drag to resize
RequestMetadata Class
Metadata about the speech request.
Inheritance Hierarchy
SystemObject
  Microsoft.Bing.SpeechRequestMetadata

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

The RequestMetadata type exposes the following members.

Constructors
  NameDescription
Public methodRequestMetadata
Initializes a new instance of the RequestMetadata class.
Top
Properties
  NameDescription
Public propertyApplicationMetadata
Gets the metadata about the end-user application.
Public propertyDeviceMetadata
Gets the metadata about the end-user device.
Public propertyIdentifier
Gets the identifier that uniquely identifies a request.
Public propertyServiceName
Gets the name that uniquely identifies the caller service.
Top
Examples
var deviceMetadata = new DeviceMetadata(DeviceType.Near, DeviceFamily.Desktop, NetworkType.Ethernet, OsName.Windows, "1607", "Dell", "T3600");
var applicationMetadata = new ApplicationMetadata("SampleApp", "1.0.0");
var requestMetadata = new RequestMetadata(Guid.NewGuid(), deviceMetadata, applicationMetadata, "SampleService");
See Also