Candor.ExecutionStep.ExecutionStep C# (CSharp) Method

ExecutionStep() public method

Creates a new instance of ExecutionStep
public ExecutionStep ( ExecutionStepType type, string message ) : System
type ExecutionStepType The type of step.
message string A descriptive message.
return System
        public ExecutionStep( ExecutionStepType type, string message )
        {
            this.type_ = type;
            if (message != null)
                this.message_ = message;
        }
ExecutionStep