The CogRunStatus type exposes the following members.
Properties
| Name | Description | |
|---|---|---|
| ChangedEventSuspended |
If nonzero, indicates that the raising of the Changed event has been
suspended. This value is incremented when SuspendChangedEvent is called
and decremented when ResumeAndRaiseChangedEvent is called.
(Inherited from CogSerializableChangedEventBase.) | |
| Exception |
Gets the exception thrown (and caught) while executing the tool's Run method.
| |
| HasChanged | (Inherited from CogSerializableChangedEventBase.) | |
| Message |
Gets a message describing the result of running the tool.
| |
| ProcessingTime |
Gets the time taken to perform the tool processing portion of the Run function.
| |
| Result |
Gets a result code that indicates the overall result of running the tool.
| |
| StateFlags |
Returns the complete set of state flags supported on this object. The
flags may be indexed by name as shown in the following C# code snippet:
if (changedObject.StateFlags["Color"] & eventArgs.StateFlags) { ... }
(Inherited from CogSerializableChangedEventBase.) | |
| TotalTime |
Gets the time taken to execute the entire Run function.
|
See Also