DisableConcurrency property

Specifies whether concurrent access to UltraLite while performing a synchronization.

Syntax
Visual Basic

Public Property DisableConcurrency As Boolean
C#

public bool DisableConcurrency  { get; set; }
Property value

True to disable concurrent access to UltraLite while performing a synchronization, false to enable concurrent access. The default is false.

Remarks

By default, other threads can perform UltraLite operations while a thread is synchronizing. When concurrent synchronization is disabled, other threads block on UltraLite calls until synchronization completes.

See also