Class AudioPlayerChangedEventArgs
Definition
- Assembly:
- Tizen.AIAvatar.dll
This class provides arguments for handling Audio State change events.
public class AudioPlayerChangedEventArgs : EventArgs
- Inheritance
-
objectAudioPlayerChangedEventArgs
Constructors
View SourceAudioPlayerChangedEventArgs(AudioPlayerState, AudioPlayerState)
Initializes a new instance of the AudioChangedEventArgs class with the specified previous and current states.
Declaration
public AudioPlayerChangedEventArgs(AudioPlayerState previous, AudioPlayerState current)
Parameters
| Type | Name | Description |
|---|---|---|
| AudioPlayerState | previous | The previous state of the audio. |
| AudioPlayerState | current | The current state of the audio. |
Properties
View SourceCurrent
The current state.
Declaration
public AudioPlayerState Current { get; }
Property Value
| Type | Description |
|---|---|
| AudioPlayerState |
Previous
The previous state.
Declaration
public AudioPlayerState Previous { get; }
Property Value
| Type | Description |
|---|---|
| AudioPlayerState |