Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Stops recording.
Namespace: Microsoft.Rtc.Collaboration.AudioVideo
Assembly: Microsoft.Rtc.Collaboration (in Microsoft.Rtc.Collaboration.dll)
Syntax
'Declaration
Public Sub Stop
'Usage
Dim instance As Recorder
instance.Stop()
public void 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();