using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IpcLibrary.Core { /// /// 进程状态 /// public enum ProcessStatus { Unknown, Connected, Disconnected, Reconnecting, Failed } }