2 implementations of IRuntimeMutableTypeSystem
Microsoft.Diagnostics.DataContractReader.Abstractions (1)
Contracts\IRuntimeMutableTypeSystem.cs (1)
19public readonly struct RuntimeMutableTypeSystem : IRuntimeMutableTypeSystem
Microsoft.Diagnostics.DataContractReader.Contracts (1)
Contracts\RuntimeMutableTypeSystem_1.cs (1)
9internal readonly struct RuntimeMutableTypeSystem_1 : IRuntimeMutableTypeSystem
10 references to IRuntimeMutableTypeSystem
Microsoft.Diagnostics.DataContractReader.Abstractions (3)
ContractRegistry.cs (2)
135public virtual IRuntimeMutableTypeSystem RuntimeMutableTypeSystem => GetContract<IRuntimeMutableTypeSystem>();
Contracts\IRuntimeMutableTypeSystem.cs (1)
11static string IContract.Name { get; } = nameof(IRuntimeMutableTypeSystem);
Microsoft.Diagnostics.DataContractReader.Contracts (3)
Contracts\RuntimeMutableTypeSystem_1.cs (2)
22bool IRuntimeMutableTypeSystem.IsFieldDescEnCNew(TargetPointer fieldDescPointer) 29IEnumerable<TargetPointer> IRuntimeMutableTypeSystem.EnumerateAddedFieldDescs(TypeHandle typeHandle, bool staticFields)
CoreCLRContracts.cs (1)
76registry.Register<IRuntimeMutableTypeSystem>("c1", static t => new RuntimeMutableTypeSystem_1(t));
Microsoft.Diagnostics.DataContractReader.Legacy (4)
Dbi\DacDbiImpl.cs (4)
1990IRuntimeMutableTypeSystem? mts = _target.Contracts.TryGetContract<IRuntimeMutableTypeSystem>(out IRuntimeMutableTypeSystem enc) ? enc : null; 2008IRuntimeMutableTypeSystem? mts,