Class ScreenMirroringAudioInfo

Definition

Namespace:
Tizen.Multimedia.Remoting
Assembly:
Tizen.Multimedia.Remoting.dll
API Level:
4

Provides a means to retrieve the audio information which is negotiated with the source device.

C#
Copy
public class ScreenMirroringAudioInfo
Inheritance
ScreenMirroringAudioInfo

Properties

View Source

BitWidth

Gets the negotiated audio bit width.

Declaration
C#
Copy
public int BitWidth { get; }
Property Value
Type Description
System.Int32
Exceptions
Type Condition
InvalidOperationException

Not connected to a source.
-or-
An internal error occurs.

ObjectDisposedException

The ScreenMirroring has already been disposed.

API Level: 4
View Source

Channels

Gets the negotiated audio channels.

Declaration
C#
Copy
public int Channels { get; }
Property Value
Type Description
System.Int32
Exceptions
Type Condition
InvalidOperationException

Not connected to a source.
-or-
An internal error occurs.

ObjectDisposedException

The ScreenMirroring has already been disposed.

API Level: 4
View Source

Codec

Gets the negotiated audio codec.

Declaration
C#
Copy
public ScreenMirroringAudioCodec Codec { get; }
Property Value
Type Description
ScreenMirroringAudioCodec
Exceptions
Type Condition
InvalidOperationException

Not connected to a source.
-or-
An internal error occurs.

ObjectDisposedException

The ScreenMirroring has already been disposed.

API Level: 4
View Source

SampleRate

Gets the negotiated audio sample rate.

Declaration
C#
Copy
public int SampleRate { get; }
Property Value
Type Description
System.Int32
Exceptions
Type Condition
InvalidOperationException

Not connected to a source.
-or-
An internal error occurs.

ObjectDisposedException

The ScreenMirroring has already been disposed.

API Level: 4

See Also