Class WavPlayer
Definition
- Namespace:
- Tizen.Multimedia
- Assembly:
- Tizen.Multimedia.AudioIO.dll
- API Level:
- 3
Provides the ability to play a wav file.
public static class WavPlayer
- Inheritance
-
WavPlayer
Methods
View SourceStartAsync(String, AudioStreamPolicy)
Plays a wav file based on the specified AudioStreamPolicy.
Declaration
public static Task StartAsync(string path, AudioStreamPolicy streamPolicy)
Parameters
Type | Name | Description |
---|---|---|
String | path | A file path to play. |
AudioStreamPolicy | streamPolicy |
Returns
Type | Description |
---|---|
Task | A task that represents the asynchronous operation. |
Exceptions
Type | Condition |
---|---|
ArgumentNullException |
-or- streamPolicy is null.
|
InvalidOperationException | An internal error occurs. |
FileNotFoundException |
|
FileFormatException | The format of |
ObjectDisposedException |
|
API Level: 3
View SourceStartAsync(String, AudioStreamPolicy, CancellationToken)
Plays a wav file based on the specified AudioStreamPolicy.
Declaration
public static Task StartAsync(string path, AudioStreamPolicy streamPolicy, CancellationToken cancellationToken)
Parameters
Type | Name | Description |
---|---|---|
String | path | A file path to play. |
AudioStreamPolicy | streamPolicy | |
CancellationToken | cancellationToken | A cancellation token which can be used to stop. |
Returns
Type | Description |
---|---|
Task | A task that represents the asynchronous operation. |
Exceptions
Type | Condition |
---|---|
ArgumentNullException |
-or- streamPolicy is null.
|
InvalidOperationException | An internal error occurs. |
FileNotFoundException |
|
FileFormatException | The format of |
ObjectDisposedException |
|