Recorder.RemoveSink 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.
Removes the media sink from this recorder.
public:
void RemoveSink();
public void RemoveSink ();
member this.RemoveSink : unit -> unit
Public Sub RemoveSink ()
Examples
The following example shows Recorder removing a MediaSink and then setting and starting to record.
C# Removing and setting MediaSink.
// In case no sink is set, RemoveSink will be no-op.
recorder.RemoveSink();
recorder.AttachFlow(audioVideoFlow);
recorder.SetSink(sink);
recorder.Start();
Remarks
If the recorder is not Stopped, RemoveSink stops it.