Class AudioDeviceConnectionChangedEventArgs
Definition
- Namespace:
- Tizen.Multimedia
- Assembly:
- Tizen.Multimedia.dll
Provides data for the Device
public class AudioDeviceConnectionChangedEventArgs : EventArgs
- Inheritance
-
objectSystem.
Event Args AudioDevice Connection Changed Event Args
Properties
View SourceDevice
Gets the device that is involved in the connection change.
This property returns an instance of Audio
Declaration
public AudioDevice Device { get; }
Property Value
Type | Description |
---|---|
Audio |
The Audio |
IsConnected
Gets the current connection state of the device.
This property indicates whether the audio device is currently connected to the system.
It will return true
if the device is connected and false
if it has
been disconnected. This information is crucial for determining the audio routing and
playback options, enabling applications to appropriately react to the presence
or absence of audio devices in the environment.
Declaration
public bool IsConnected { get; }
Property Value
Type | Description |
---|---|
bool | true if the device is connected; otherwise, false. |