Interface IAlgorithm
Abstract representation of an algorithm.
Namespace: System.Dynamic.ExpandoObject
Assembly: cs.temp.dll.dll
Syntax
public interface IAlgorithm
Properties
ErrorMessage
Returns an error message when the algorithm was not successful.
Declaration
string ErrorMessage { get; }
Property Value
|
System.String
|
HasRun
Returns true if this instance has run already.
Declaration
bool HasRun { get; }
Property Value
|
System.Boolean
|
HasSucceeded
Returns true if this instance has run and it was succesfull.
Declaration
bool HasSucceeded { get; }
Property Value
|
System.Boolean
|
Methods
Run()
Runs the algorithm.
Declaration
void Run()
Run(CancellationToken)
Runs the algorithm.
Declaration
void Run(CancellationToken cancellationToken)
Parameters
|
CancellationToken
cancellationToken
|