1 instantiation of StressLogData
Microsoft.Diagnostics.DataContractReader.Contracts (1)
Contracts\StressLog.cs (1)
41return new StressLogData(
12 references to StressLogData
Microsoft.Diagnostics.DataContractReader.Abstractions (3)
Contracts\IStressLog.cs (3)
38StressLogData GetStressLogData() => throw new NotImplementedException(); 39StressLogData GetStressLogData(TargetPointer stressLog) => throw new NotImplementedException(); 42bool IsPointerInStressLog(StressLogData stressLog, TargetPointer pointer) => throw new NotImplementedException();
Microsoft.Diagnostics.DataContractReader.Contracts (9)
Contracts\StressLog.cs (9)
28public StressLogData GetStressLogData() 38public StressLogData GetStressLogData(TargetPointer stressLogPointer) 217public bool IsPointerInStressLog(StressLogData stressLog, TargetPointer pointer) 339public StressLogData GetStressLogData() => traversal.GetStressLogData(); 340public StressLogData GetStressLogData(TargetPointer stressLog) => traversal.GetStressLogData(stressLog); 343public bool IsPointerInStressLog(StressLogData stressLog, TargetPointer pointer) => traversal.IsPointerInStressLog(stressLog, pointer); 352public StressLogData GetStressLogData() => traversal.GetStressLogData(); 353public StressLogData GetStressLogData(TargetPointer stressLog) => traversal.GetStressLogData(stressLog); 356public bool IsPointerInStressLog(StressLogData stressLog, TargetPointer pointer) => traversal.IsPointerInStressLog(stressLog, pointer);