ArgusTV.Recorder.MediaPortalTvServer.RecordingThread.OnStopRecording C# (CSharp) Method

OnStopRecording() protected method

protected OnStopRecording ( RecorderCallbackServiceAgent callbackAgent, bool abort ) : bool
callbackAgent RecorderCallbackServiceAgent
abort bool
return bool
        protected override bool OnStopRecording(RecorderCallbackServiceAgent callbackAgent, bool abort)
        {
            if (_tve3User != null)
            {
                if (StopMediaPortalRecording(_tve3User))
                {
                    _tve3User = null;
                    return true;
                }
            }
            return false;
        }