2 implementations of ICodeNotifications
Microsoft.Diagnostics.DataContractReader.Abstractions (1)
Contracts\ICodeNotifications.cs (1)
49public readonly struct CodeNotifications : ICodeNotifications
Microsoft.Diagnostics.DataContractReader.Contracts (1)
Contracts\CodeNotifications_1.cs (1)
9internal readonly struct CodeNotifications_1 : ICodeNotifications
9 references to ICodeNotifications
Microsoft.Diagnostics.DataContractReader.Abstractions (2)
ContractRegistry.cs (2)
98public virtual ICodeNotifications CodeNotifications => GetContract<ICodeNotifications>();
Microsoft.Diagnostics.DataContractReader.Contracts (4)
Contracts\CodeNotifications_1.cs (3)
18void ICodeNotifications.SetCodeNotification(TargetPointer module, uint methodToken, CodeNotificationKind flags) 82CodeNotificationKind ICodeNotifications.GetCodeNotification(TargetPointer module, uint methodToken) 97void ICodeNotifications.SetAllCodeNotifications(TargetPointer module, CodeNotificationKind flags)
CoreCLRContracts.cs (1)
27registry.Register<ICodeNotifications>("c1", static t => new CodeNotifications_1(t));
Microsoft.Diagnostics.DataContractReader.Legacy (3)
ClrDataMethodDefinition.cs (2)
398ICodeNotifications codeNotif = _target.Contracts.CodeNotifications; 422ICodeNotifications codeNotif = _target.Contracts.CodeNotifications;
SOSDacImpl.IXCLRDataProcess.cs (1)
848ICodeNotifications codeNotif = _target.Contracts.CodeNotifications;