6 implementations of RawContextFlags
Microsoft.Diagnostics.DataContractReader.Contracts (6)
Contracts\StackWalk\Context\AMD64Context.cs (1)
56public uint RawContextFlags { readonly get => ContextFlags; set => ContextFlags = value; }
Contracts\StackWalk\Context\ARM64Context.cs (1)
63public uint RawContextFlags { readonly get => ContextFlags; set => ContextFlags = value; }
Contracts\StackWalk\Context\ARMContext.cs (1)
56public uint RawContextFlags { readonly get => ContextFlags; set => ContextFlags = value; }
Contracts\StackWalk\Context\LoongArch64Context.cs (1)
61public uint RawContextFlags { readonly get => ContextFlags; set => ContextFlags = value; }
Contracts\StackWalk\Context\RISCV64Context.cs (1)
61public uint RawContextFlags { readonly get => ContextFlags; set => ContextFlags = value; }
Contracts\StackWalk\Context\X86Context.cs (1)
63public uint RawContextFlags { readonly get => ContextFlags; set => ContextFlags = value; }
1 write to RawContextFlags
Microsoft.Diagnostics.DataContractReader.Contracts (1)
Contracts\StackWalk\Context\ContextHolder.cs (1)
24public uint RawContextFlags { get => Context.RawContextFlags; set => Context.RawContextFlags = value; }
1 reference to RawContextFlags
Microsoft.Diagnostics.DataContractReader.Contracts (1)
Contracts\StackWalk\Context\ContextHolder.cs (1)
24public uint RawContextFlags { get => Context.RawContextFlags; set => Context.RawContextFlags = value; }