Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
ExtendedProperties.IsSynchronized Property |
Gets a value that indicates whether or not access to the ExtendedProperties collection is synchronized (thread safe).
Definition
Visual Basic .NET Public ReadOnly Property IsSynchronized As Boolean C# public bool IsSynchronized { get; } Managed C++ public: __property bool* get_IsSynchronized();
Property Value
System.Boolean. Returns false in all cases. Access to the ExtendedProperties collection is not synchronized (is not thread-safe).
This property is read-only.
false
Default. Access to the collection is not synchronized.
Remarks
The SyncRoot property returns an object that can be used to synchronize access to the ExtendedProperties collection.
The ExtendedProperties collection implements the ICollection
interface. For more information about the IsSynchronized property, see ICollection.IsSynchronized
.
See Also