StateChangedEventArgs Class

Microsoft Speech Platform SDK 11

Collapse imageExpand ImageCopy imageCopyHover image

Returns data from the StateChanged event.

Inheritance Hierarchy

System..::..Object
  System..::..EventArgs
    Microsoft.Speech.Synthesis..::..StateChangedEventArgs

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

Syntax

Visual Basic (Declaration)
Public Class StateChangedEventArgs _
	Inherits EventArgs
Visual Basic (Usage)
Dim instance As StateChangedEventArgs
C#
public class StateChangedEventArgs : EventArgs

Remarks

An instance of StateChangedEventArgs is created when the SpeechSynthesizer object raises the StateChanged event. To obtain the values for the new and the previous SynthesizerState, access the State and PreviousState properties in the handler for the event.

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

See Also