ReaderWriterLockSlim.IsWriteLockHeld 屬性

定義

取得值,表示目前執行緒是否已進入寫入模式的鎖定。

public:
 property bool IsWriteLockHeld { bool get(); };
public bool IsWriteLockHeld { get; }
member this.IsWriteLockHeld : bool
Public ReadOnly Property IsWriteLockHeld As Boolean

屬性值

如果目前執行緒已進入寫入模式,則為 true;否則為 false

範例

下列範例示範如何使用 IsWriteLockHeld 屬性,在目前的執行緒意外進入寫入模式時產生判斷提示。

using (ReaderWriterLockSlim rwLock = new ReaderWriterLockSlim()) {
Using rwLock As New ReaderWriterLockSlim()
Debug.Assert(!rwLock.IsWriteLockHeld, 
    String.Format("Thread {0} is still holding the write lock after MyFunction has finished.", 
                  Thread.CurrentThread.ManagedThreadId));
Debug.Assert(Not rwLock.IsWriteLockHeld, _
    String.Format("Thread {0} is still holding the write lock after MyFunction has finished.", _
                  Thread.CurrentThread.ManagedThreadId))

備註

此屬性適用于判斷提示或其他偵錯用途。 請勿使用它來控制程式執行的流程。

適用於