public SDResult(SDSystemContext context, Dictionary <uint, SDThread> threads, Dictionary <ulong, SDMemoryObject> memoryObjects, List <SDDeadlockContext> deadlocks) { this.SystemContext = context; this.ThreadInformation = threads; this.MemoryInformation = memoryObjects; this.DeadlockInformation = deadlocks; }
public SDResult(SDSystemContext context, SDLastEvent lastEvent, List <SDClrException> exceptions, Dictionary <uint, SDThread> threads, Dictionary <ulong, SDMemoryObject> memoryObjects, List <SDDeadlockContext> deadlocks, List <string> notLoadedSymbols) { this.SystemContext = context; this.LastEvent = lastEvent; this.ExceptionRecord = exceptions; this.ThreadInformation = threads; this.MemoryInformation = memoryObjects; this.DeadlockInformation = deadlocks; this.NotLoadedSymbols = notLoadedSymbols; }