Class RecordingStatusChangedEventArgs

Definition

Namespace:
Tizen.Multimedia
Assembly:
Tizen.Multimedia.Recorder.dll

Provides data for the RecordingStatusChanged event.

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

Constructors

View Source

RecordingStatusChangedEventArgs(long, long)

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
long elapsedTime

The time of the recording in milliseconds.

long fileSize

The size of the recording in kilobytes.

Properties

View Source

ElapsedTime

Gets the time of the recording in milliseconds.

Declaration
C#
Copy
public long ElapsedTime { get; }
Property Value
Type Description
long
View Source

FileSize

Gets the size of the recording file in kilobytes.

Declaration
C#
Copy
public long FileSize { get; }
Property Value
Type Description
long