SendMailJobCollectionSyncRoot Property |
Gets an object that can be used to synchronize access to the collection.
Namespace: MailBee.SmtpMailAssembly: MailBee.NET (in MailBee.NET.dll) Version: 12.5.0 build 687 for .NET 4.5
Syntax public Object SyncRoot { get; }
Public ReadOnly Property SyncRoot As Object
Get
Property Value
Type:
Object
An object that can be used to synchronize access to the collection.
Implements
ICollectionSyncRootRemarks Synchronized access to the collection is required in multi-thread mode when multiple threads
can access it at the same time.
SyncRoot property can be used just in the same way as other SyncRoot properties in the .NET framework,
for instance, Array.SyncRoot.
See Also