2 implementations of IDebugger
Microsoft.Diagnostics.DataContractReader.Abstractions (1)
Contracts\IDebugger.cs (1)
25public readonly struct Debugger : IDebugger
Microsoft.Diagnostics.DataContractReader.Contracts (1)
Contracts\Debugger_1.cs (1)
6internal readonly struct Debugger_1 : IDebugger
14 references to IDebugger
Microsoft.Diagnostics.DataContractReader.Abstractions (2)
ContractRegistry.cs (2)
126public virtual IDebugger Debugger => GetContract<IDebugger>();
Microsoft.Diagnostics.DataContractReader.Contracts (10)
Contracts\Debugger_1.cs (9)
33bool IDebugger.TryGetDebuggerData(out DebuggerData data) 44int IDebugger.GetAttachStateFlags() 50void IDebugger.MarkDebuggerAttachPending() 57void IDebugger.MarkDebuggerAttached(bool fAttached) 71bool IDebugger.MetadataUpdatesApplied() 80void IDebugger.RequestSyncAtEvent() 89void IDebugger.SetSendExceptionsOutsideOfJMC(bool sendExceptionsOutsideOfJMC) 98TargetPointer IDebugger.GetDebuggerControlBlockAddress() 112void IDebugger.EnableGCNotificationEvents(bool fEnable)
CoreCLRContracts.cs (1)
33registry.Register<IDebugger>("c1", static t => new Debugger_1(t));
Microsoft.Diagnostics.DataContractReader.Legacy (2)
Dbi\DacDbiImpl.cs (2)
583Contracts.IDebugger debugger = _target.Contracts.Debugger; 614Contracts.IDebugger debugger = _target.Contracts.Debugger;