DataUpdaterT Delegate

Delegate for updating the data value. Receives a clone copy of the data object and returns the value to be set as the data value. ///

Definition

Namespace: MFiles.VAF.MultiserverMode
Assembly: MFiles.VAF (in MFiles.VAF.dll) Version: 24.1.706.1
C#
public delegate T DataUpdater<T>(
	T data
)

Parameters

data  T
The data value.

Type Parameters

T
The data type.

Return Value

T
The updated version of the data.

See Also