1 implementation of TryReadRegister
Microsoft.Diagnostics.DataContractReader.Contracts (1)
Contracts\StackWalk\Context\ContextHolder.cs (1)
58public bool TryReadRegister(string fieldName, out TargetNUInt value) => Context.TryReadRegister(fieldName, out value);
3 references to TryReadRegister
Microsoft.Diagnostics.DataContractReader.Contracts (3)
Contracts\StackWalk\FrameHandling\BaseFrameHandler.cs (1)
98if (!otherContext.TryReadRegister(name, out TargetNUInt value))
Contracts\StackWalk\FrameHandling\FrameHelpers.cs (1)
549if (!context.TryReadRegister(registerName, out TargetNUInt value))
Contracts\StackWalk\StackWalk_1.cs (1)
1195? context.TryReadRegister(storage.RegisterName, out value)