using System.Diagnostics; namespace MediaBrowser.Controller.Diagnostics { /// /// Interface IProcessManager /// public interface IProcessManager { /// /// Gets a value indicating whether [supports suspension]. /// /// true if [supports suspension]; otherwise, false. bool SupportsSuspension { get; } /// /// Suspends the process. /// /// The process. void SuspendProcess(Process process); /// /// Resumes the process. /// /// The process. void ResumeProcess(Process process); } }