Recorder.Start Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.