 | Result(String, NullableBoolean, NullableNodeState, NullableNodeLogicalState, Object) Constructor |
Parameterised constructor.
Namespace: Vishnu.InterchangeAssembly: Vishnu.Interchange (in Vishnu.Interchange.dll) Version: 1.0.0+df0404e911d6c38eaed3bb1bb1acfc482d417643
Syntaxpublic Result(
string id,
bool? logical,
NodeState? state,
NodeLogicalState? logicalState,
Object? returnObject
)
Public Sub New (
id As String,
logical As Boolean?,
state As NodeState?,
logicalState As NodeLogicalState?,
returnObject As Object
)
public:
Result(
String^ id,
Nullable<bool> logical,
Nullable<NodeState> state,
Nullable<NodeLogicalState> logicalState,
Object^ returnObject
)
new :
id : string *
logical : Nullable<bool> *
state : Nullable<NodeState> *
logicalState : Nullable<NodeLogicalState> *
returnObject : Object -> Result
Parameters
- id String
- Id of the owning node.
- logical NullableBoolean
- Logical result of the owning node (true, false, null).
- state NullableNodeState
- Processing status of the owning node: None, Waiting, Working, Finished,
Busy (= Waiting | Working) or CanStart (= None|Finished).
- logicalState NullableNodeLogicalState
- Logical state of the owning node: None, Done, Fault, Timeout, UserAbort
- returnObject Object
- Any object.
See also