1 implementation of TryGetLockInfo
Microsoft.Diagnostics.DataContractReader.Contracts (1)
Contracts\SyncBlock_1.cs (1)
42public bool TryGetLockInfo(TargetPointer syncBlock, out uint owningThreadId, out uint recursion)
2 references to TryGetLockInfo
Microsoft.Diagnostics.DataContractReader.Legacy (2)
Dbi\DacDbiImpl.cs (1)
3144if (syncBlock == TargetPointer.Null || !_target.Contracts.SyncBlock.TryGetLockInfo(syncBlock, out threadId, out recursionCount))
SOSDacImpl.cs (1)
4217bool monitorHeld = syncBlock.TryGetLockInfo(syncBlockAddr, out uint owningThreadId, out uint recursion);