TabletDeviceCollection.IsSynchronized Proprietà

Definizione

Ottiene un valore che indica se l'accesso alla raccolta è sincronizzato (thread-safe).

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

Valore della proprietà

true se l'accesso alla raccolta è sincronizzato (thread-safe). In caso contrario, false. Il valore predefinito è false.

Implementazioni

Esempio

Nell'esempio seguente viene illustrata la IsSynchronized proprietà .

// Is the collection thread safe?        
if (!myTabletDeviceCollection.IsSynchronized)
{
    // If not, use SyncRoot to lock access
    lock (myTabletDeviceCollection.SyncRoot)
    {
        // work with collection
    }
}
'  Is the collection thread safe?
If Not myTabletDeviceCollection.IsSynchronized Then
    ' If not, use SyncRoot to lock access
    SyncLock myTabletDeviceCollection.SyncRoot
        ' work with collection
    End SyncLock
End If

Si applica a