Edit

Share via


Recorder.Start Method

Definition

Starts and resume recording.

public:
 void Start();
public void Start ();
member this.Start : unit -> unit
Public Sub Start ()

Exceptions

Thrown when sink is not defined or if the recorder is already started.

Thrown when the operation failed.

Examples

The following example starts a Recorder.

C# Starting a Recorder.


recorder.AttachFlow(audioVideoFlow);
recorder.SetSink(sink);
recorder.Start();



Remarks

Start can be used to start a new recording or resume a paused one.

Applies to