jellyfin/MediaBrowser.Model/Diagnostics/IProcessFactory.cs

25 lines
775 B
C#
Raw Normal View History

2020-02-03 17:49:27 -07:00
#pragma warning disable CS1591
namespace MediaBrowser.Model.Diagnostics
2018-12-27 16:27:57 -07:00
{
public interface IProcessFactory
{
IProcess Create(ProcessOptions options);
}
public class ProcessOptions
{
public string FileName { get; set; }
public string Arguments { get; set; }
public string WorkingDirectory { get; set; }
2018-12-27 16:27:57 -07:00
public bool CreateNoWindow { get; set; }
public bool UseShellExecute { get; set; }
public bool EnableRaisingEvents { get; set; }
public bool ErrorDialog { get; set; }
public bool RedirectStandardError { get; set; }
public bool RedirectStandardInput { get; set; }
public bool RedirectStandardOutput { get; set; }
public bool IsHidden { get; set; }
}
}