10 references to CLRDataMethodCodeNotification
Microsoft.Diagnostics.DataContractReader.Legacy (10)
CodeNotificationFlagsConverter.cs (10)
9
/// Translates between the COM-side <see cref="
CLRDataMethodCodeNotification
"/> bit field
18
(uint)(
CLRDataMethodCodeNotification
.CLRDATA_METHNOTIFY_GENERATED
19
|
CLRDataMethodCodeNotification
.CLRDATA_METHNOTIFY_DISCARDED);
23
/// <see cref="
CLRDataMethodCodeNotification
"/> value.
28
/// Convert a raw COM <see cref="
CLRDataMethodCodeNotification
"/> bitmask to the
34
if ((flags & (uint)
CLRDataMethodCodeNotification
.CLRDATA_METHNOTIFY_GENERATED) != 0)
36
if ((flags & (uint)
CLRDataMethodCodeNotification
.CLRDATA_METHNOTIFY_DISCARDED) != 0)
43
/// <see cref="
CLRDataMethodCodeNotification
"/> bitmask, mapping each defined bit
50
result |= (uint)
CLRDataMethodCodeNotification
.CLRDATA_METHNOTIFY_GENERATED;
52
result |= (uint)
CLRDataMethodCodeNotification
.CLRDATA_METHNOTIFY_DISCARDED;