Interface IUpdate
Represents properties and methods of updateable objects.
public interface IUpdate
Properties
- UpdateCount
When implemented by a class, keeps track of calls to
BeginUpdateandEndUpdateso that they can be nested.
Methods
- BeginUpdate()
When implemented by a class, prevents object state updating until calling
EndUpdatemethod.
- DisableUpdate()
When implemented by a class, prevents object state updating until calling
EnableUpdatemethod.
- EnableUpdate()
When implemented by a class, re-enables object state updating, that was turn of by calling
DisableUpdatemethod. 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
BeginUpdatemethod.
- Update()
When implemented by a class, updates an object state.