Enum ChangeType

The IChange types.

Namespace: PushTechnology.ClientInterface.Data.Record
Assembly: Diffusion.Client.dll
Syntax
public enum ChangeType : int
Remarks

Implemented in Version 6.0.

Fields

Name Description
FIELD_CHANGED

The change indicates that a field had its value changed.

This could be a field that has had its value changed or a new field that has been added at the end of a variable length record.

The change will contain name and index details of both the record and the field.

FIELDS_ADDED

The change indicates that one or more field values have been added.

This will only occur when variable multiplicity fields are used within records.

The change will contain name and index of the record and the name and index of the first field added.

FIELDS_REMOVED

The change indicates that a field value has been removed.

This will only occur when variable multiplicity fields are used within records.

The change will contain name and index details of the record and the name and index of the first field removed.

RECORDS_ADDED

The change indicates that one or more records have been added.

This will only occur when variable multiplicity records are in use.

The change will contain only the record name and the index of the first record added.

RECORDS_REMOVED

The change indicates that one or more records have been removed.

This will only occur when variable multiplicity records are in use.

The change will contain only the record name and the index of the first record removed.

Back to top