Table of Contents

SyncMode

Properties
public virtual SyncMode SyncMode { get; set; }

Gets or sets the synchronization mode that determines when this binding's data is replicated over the network.

Property Value
Type Description
SyncMode

The current SyncMode for this binding. Defaults to Always.

Remarks

The sync mode controls the timing and conditions under which the binding's value is checked for changes and sent across the network. This allows fine-tuning of network traffic and performance.

The default sync mode can be configured through the DefaultSyncMode property when marking fields or properties with the [Sync] attribute in your code.

See Also