SendMailJobCollectionSyncRoot Property
Gets an object that can be used to synchronize access to the collection.

Namespace: MailBee.SmtpMail
Assembly: MailBee.NET (in MailBee.NET.dll) Version: 12.4 build 677 for .NET 4.5
Syntax
public Object SyncRoot { get; }

Property Value

Type: Object
An object that can be used to synchronize access to the collection.

Implements

ICollectionSyncRoot
Remarks

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