Edit

Share via


Recorder.Stop Method

Definition

Stops recording.

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

Examples

The following example starts, pause, restarts (by calling Start) and stops the Recorder.

C# Starting, pausing, restarting and stopping a Recorder.


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



recorder.Pause();



recorder.Start();



recorder.Stop();



Applies to