Get the dirty state for this record.


Namespace: NetricsServerInterface
Assembly: NetricsServerInterface (in NetricsServerInterface.dll)

Syntax

Visual Basic (Declaration)
Public Function getDirtyState() As Boolean
C#
public bool getDirtyState()
C++
public:
 bool getDirtyState() sealed 
J#
public bool getDirtyState()
JScript
public  function getDirtyState() : bool

Return Value

True if record is dirty, False otherwise.

Remarks

This returns true if theis record is in a dirty state. A dirty record is one that has been modified by a transaction that is still open, i.e. not yet committed or aborted. As the transaction is incomplete a dirty record may represent an intermediate state or it may get removed or rolled back if the transaction is aborted. The user my wish to ignore dirty records.

See Also