[This is preliminary documentation and is subject to change.]

Commits the component

Namespace: Clarion.Framework.Core
Assembly: CLARIONLibrary (in CLARIONLibrary.dll) Version: 6.1.0.7 (6.1.0.7)

Syntax

C#
public virtual void Commit()

Implements

ICommitable..::..Commit()()()()

Remarks

Note
It is HIGHLY recommended for those users implementing a custom component to override this method in order to commit (i.e., make immutable) any/all fields within that component. Details on how to correctly implement this can be found in the Advanced Tutorial under the Tutorials section of the CLARION Library package.
Caution
If this method is overridden, that overridden method MUST also call the base class's commit method (by calling base.Commit()). Failing to call the base class's commit method will likely cause your component to work incorrectly.

See Also