3 implementations of IStressLog
Microsoft.Diagnostics.DataContractReader.Abstractions (1)
Contracts\IStressLog.cs (1)
47public readonly struct StressLog : IStressLog
Microsoft.Diagnostics.DataContractReader.Contracts (2)
Contracts\StressLog.cs (2)
343internal sealed class StressLog_1(Target target) : IStressLog 357internal sealed class StressLog_2(Target target) : IStressLog
8 references to IStressLog
Microsoft.Diagnostics.DataContractReader.Abstractions (2)
ContractRegistry.cs (2)
142public virtual IStressLog StressLog => GetContract<IStressLog>();
Microsoft.Diagnostics.DataContractReader.Contracts (2)
CoreCLRContracts.cs (2)
39registry.Register<IStressLog>("c1", static t => new StressLog_1(t)); 40registry.Register<IStressLog>("c2", static t => new StressLog_2(t));
Microsoft.Diagnostics.DataContractReader.Legacy (4)
SOSDacImpl.cs (4)
7269Contracts.IStressLog stressLogContract = _target.Contracts.StressLog; 7296Contracts.IStressLog stressLogContract = _target.Contracts.StressLog; 7326Contracts.IStressLog stressLogContract = _target.Contracts.StressLog; 7347Contracts.IStressLog stressLogContract = _target.Contracts.StressLog;