Mono.Debugger.Backend.ThreadManager.PendingEventInfo.PendingEventInfo C# (CSharp) Method

PendingEventInfo() public method

public PendingEventInfo ( int pid, int status ) : System
pid int
status int
return System
            public PendingEventInfo(int pid, int status)
            {
                this.PID = pid;
                this.Status = status;
                this.TimeStamp = DateTime.Now;
            }
ThreadManager.PendingEventInfo