29 interfaces inheriting from IContract
Microsoft.Diagnostics.DataContractReader.Abstractions (29)
Contracts\IAuxiliarySymbols.cs (1)
9public interface IAuxiliarySymbols : IContract
Contracts\IBuiltInCOM.cs (1)
46public interface IBuiltInCOM : IContract
Contracts\ICodeNotifications.cs (1)
27public interface ICodeNotifications : IContract
Contracts\ICodeVersions.cs (1)
9public interface ICodeVersions : IContract
Contracts\IComWrappers.cs (1)
9public interface IComWrappers : IContract
Contracts\IConditionalWeakTable.cs (1)
8public interface IConditionalWeakTable : IContract
Contracts\IDacStreams.cs (1)
8public interface IDacStreams : IContract
Contracts\IDebugger.cs (1)
10public interface IDebugger : IContract
Contracts\IDebugInfo.cs (1)
77public interface IDebugInfo : IContract
Contracts\IEcmaMetadata.cs (1)
9public interface IEcmaMetadata : IContract
Contracts\IException.cs (1)
18public interface IException : IContract
Contracts\IExecutionManager.cs (1)
95public interface IExecutionManager : IContract
Contracts\IGC.cs (1)
136public interface IGC : IContract
Contracts\IGCInfo.cs (1)
45public interface IGCInfo : IContract
Contracts\ILoader.cs (1)
99public interface ILoader : IContract
Contracts\INotifications.cs (1)
59public interface INotifications : IContract
Contracts\IObject.cs (1)
8public interface IObject : IContract
Contracts\IObjectiveCMarshal.cs (1)
8public interface IObjectiveCMarshal : IContract
Contracts\IPlatformMetadata.cs (1)
14public interface IPlatformMetadata : IContract
Contracts\IPrecodeStubs.cs (1)
8public interface IPrecodeStubs : IContract
Contracts\IReJIT.cs (1)
15public interface IReJIT : IContract
Contracts\IRuntimeInfo.cs (1)
33public interface IRuntimeInfo : IContract
Contracts\IRuntimeTypeSystem.cs (1)
100public interface IRuntimeTypeSystem : IContract
Contracts\ISHash.cs (1)
24public interface ISHash : IContract
Contracts\ISignature.cs (1)
9public interface ISignature : IContract
Contracts\IStackWalk.cs (1)
24public interface IStackWalk : IContract
Contracts\IStressLog.cs (1)
34public interface IStressLog : IContract
Contracts\ISyncBlock.cs (1)
7public interface ISyncBlock : IContract
Contracts\IThread.cs (1)
64public interface IThread : IContract
39 references to IContract
Microsoft.Diagnostics.DataContractReader (5)
CachingContractRegistry.cs (5)
20private readonly Dictionary<Type, IContract> _contracts = []; 21private readonly Dictionary<(Type, string), Func<Target, IContract>> _creators = []; 45if (_contracts.TryGetValue(typeof(TContract), out IContract? cached)) 57if (!_creators.TryGetValue((typeof(TContract), version), out Func<Target, IContract>? creator)) 75foreach (IContract contract in _contracts.Values)
Microsoft.Diagnostics.DataContractReader.Abstractions (34)
ContractRegistry.cs (4)
141public abstract bool TryGetContract<TContract>([NotNullWhen(true)] out TContract contract, out string? failureReason) where TContract : IContract; 143public TContract GetContract<TContract>() where TContract : IContract 152public bool TryGetContract<TContract>([NotNullWhen(true)] out TContract contract) where TContract : IContract 162where TContract : IContract;
Contracts\IAuxiliarySymbols.cs (1)
11static string IContract.Name { get; } = nameof(AuxiliarySymbols);
Contracts\IBuiltInCOM.cs (1)
48static string IContract.Name { get; } = nameof(BuiltInCOM);
Contracts\ICodeNotifications.cs (1)
29static string IContract.Name { get; } = nameof(CodeNotifications);
Contracts\ICodeVersions.cs (1)
11static string IContract.Name { get; } = nameof(CodeVersions);
Contracts\IComWrappers.cs (1)
11static string IContract.Name { get; } = nameof(ComWrappers);
Contracts\IConditionalWeakTable.cs (1)
10static string IContract.Name { get; } = nameof(ConditionalWeakTable);
Contracts\IDacStreams.cs (1)
10static string IContract.Name { get; } = nameof(DacStreams);
Contracts\IDebugger.cs (1)
12static string IContract.Name { get; } = nameof(Debugger);
Contracts\IDebugInfo.cs (1)
79static string IContract.Name { get; } = nameof(DebugInfo);
Contracts\IEcmaMetadata.cs (1)
11static string IContract.Name { get; } = nameof(EcmaMetadata);
Contracts\IException.cs (1)
20static string IContract.Name { get; } = nameof(Exception);
Contracts\IExecutionManager.cs (1)
97static string IContract.Name { get; } = nameof(ExecutionManager);
Contracts\IGC.cs (1)
138static string IContract.Name { get; } = nameof(GC);
Contracts\IGCInfo.cs (1)
47static string IContract.Name { get; } = nameof(GCInfo);
Contracts\ILoader.cs (1)
101static string IContract.Name => nameof(Loader);
Contracts\INotifications.cs (1)
61static string IContract.Name { get; } = nameof(Notifications);
Contracts\IObject.cs (1)
10static string IContract.Name { get; } = nameof(Object);
Contracts\IObjectiveCMarshal.cs (1)
10static string IContract.Name { get; } = nameof(ObjectiveCMarshal);
Contracts\IPlatformMetadata.cs (1)
16static string IContract.Name { get; } = nameof(PlatformMetadata);
Contracts\IPrecodeStubs.cs (1)
10static string IContract.Name { get; } = nameof(PrecodeStubs);
Contracts\IReJIT.cs (1)
17static string IContract.Name { get; } = nameof(ReJIT);
Contracts\IRuntimeInfo.cs (1)
35static string IContract.Name { get; } = nameof(RuntimeInfo);
Contracts\IRuntimeTypeSystem.cs (1)
102static string IContract.Name => nameof(RuntimeTypeSystem);
Contracts\ISHash.cs (1)
26static string IContract.Name { get; } = nameof(SHash);
Contracts\ISignature.cs (1)
11static string IContract.Name { get; } = nameof(Signature);
Contracts\IStackWalk.cs (1)
26static string IContract.Name => nameof(StackWalk);
Contracts\IStressLog.cs (1)
36static string IContract.Name { get; } = nameof(StressLog);
Contracts\ISyncBlock.cs (1)
9static string IContract.Name { get; } = nameof(SyncBlock);
Contracts\IThread.cs (1)
66static string IContract.Name { get; } = nameof(Thread);
IContractFactory.cs (1)
8public interface IContractFactory<out TContract> where TContract : Contracts.IContract