Class RecordingStatusChangedEventArgs

Definition

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

Provides data for the RecordingStatusChanged event.

C#
Copy
public class RecordingStatusChangedEventArgs : EventArgs
Inheritance
System.Object
RecordingStatusChangedEventArgs

Constructors

View Source

RecordingStatusChangedEventArgs(Int64, Int64)

Initializes a new instance of the RecordingStatusChangedEventArgs class with the specified elapsed time and file size.

Declaration
C#
Copy
public RecordingStatusChangedEventArgs(long elapsedTime, long fileSize)
Parameters
Type Name Description
System.Int64 elapsedTime

The time of the recording in milliseconds.

System.Int64 fileSize

The size of the recording in kilobytes.

API Level: 4

Properties

View Source

ElapsedTime

Gets the time of the recording in milliseconds.

Declaration
C#
Copy
public long ElapsedTime { get; }
Property Value
Type Description
System.Int64
API Level: 4
View Source

FileSize

Gets the size of the recording file in kilobytes.

Declaration
C#
Copy
public long FileSize { get; }
Property Value
Type Description
System.Int64
API Level: 4