23 references to CodeNotificationKind
Microsoft.Diagnostics.DataContractReader.Abstractions (3)
Contracts\ICodeNotifications.cs (3)
36void SetCodeNotification(TargetPointer module, uint methodToken, CodeNotificationKind flags) => throw new NotImplementedException(); 41CodeNotificationKind GetCodeNotification(TargetPointer module, uint methodToken) => throw new NotImplementedException(); 46void SetAllCodeNotifications(TargetPointer module, CodeNotificationKind flags) => throw new NotImplementedException();
Microsoft.Diagnostics.DataContractReader.Contracts (10)
Contracts\CodeNotifications_1.cs (10)
18void ICodeNotifications.SetCodeNotification(TargetPointer module, uint methodToken, CodeNotificationKind flags) 20TableView? view = PrepareTable(allocateIfMissing: flags != CodeNotificationKind.None); 26if (flags == CodeNotificationKind.None) 82CodeNotificationKind ICodeNotifications.GetCodeNotification(TargetPointer module, uint methodToken) 86return CodeNotificationKind.None; 91return (CodeNotificationKind)v.GetEntry(foundIndex).State; 94return CodeNotificationKind.None; 97void ICodeNotifications.SetAllCodeNotifications(TargetPointer module, CodeNotificationKind flags) 116if (flags == CodeNotificationKind.None) 128if (changed && flags == CodeNotificationKind.None)
Microsoft.Diagnostics.DataContractReader.Legacy (10)
CodeNotificationFlagsConverter.cs (10)
11/// <see cref="CodeNotificationKind"/> enum. The two enums happen to share the same bit 31public static CodeNotificationKind FromCom(uint flags) 33CodeNotificationKind result = CodeNotificationKind.None; 35result |= CodeNotificationKind.Generated; 37result |= CodeNotificationKind.Discarded; 42/// Convert a contract <see cref="CodeNotificationKind"/> value back to the raw COM 46public static uint ToCom(CodeNotificationKind kind) 49if ((kind & CodeNotificationKind.Generated) != 0) 51if ((kind & CodeNotificationKind.Discarded) != 0)