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
9 references to IStressLog
Microsoft.Diagnostics.DataContractReader.Abstractions (2)
ContractRegistry.cs (2)
146public virtual IStressLog StressLog => GetContract<IStressLog>();
Microsoft.Diagnostics.DataContractReader.Contracts (3)
CoreCLRContracts.cs (3)
39registry.Register<IStressLog>("c1", static t => new StressLog_1(t)); 40registry.Register<IStressLog>("c2", static t => new StressLog_2(t)); 134Validate<IStressLog>(registry);
Microsoft.Diagnostics.DataContractReader.Legacy (4)
SOSDacImpl.cs (4)
7286Contracts.IStressLog stressLogContract = _target.Contracts.StressLog; 7313Contracts.IStressLog stressLogContract = _target.Contracts.StressLog; 7343Contracts.IStressLog stressLogContract = _target.Contracts.StressLog; 7364Contracts.IStressLog stressLogContract = _target.Contracts.StressLog;