Table of Contents

Interface IUpdate

Namespace
Alternet.Common
Assembly
Alternet.Common.v9.dll

Represents properties and methods of updateable objects.

public interface IUpdate

Properties

UpdateCount

When implemented by a class, keeps track of calls to BeginUpdate and EndUpdate so that they can be nested.

Methods

BeginUpdate()

When implemented by a class, prevents object state updating until calling EndUpdate method.

DisableUpdate()

When implemented by a class, prevents object state updating until calling EnableUpdate method.

EnableUpdate()

When implemented by a class, re-enables object state updating, that was turn of by calling DisableUpdate method. Using DisableUpdate/EnableUpdate to prevent notifying about updating the object state.

EndUpdate()

When implemented by a class, re-enables object state updating, that was turn of by calling BeginUpdate method.

Update()

When implemented by a class, updates an object state.