Candor.ExecutionResults.AppendWarning C# (CSharp) Method

AppendWarning() public method

Adds a new warning to the result.
public AppendWarning ( string message ) : void
message string The warning message.
return void
        public void AppendWarning( string message )
        {
            if (message == null)
                return;

            messages_.Add(new ExecutionStep(ExecutionStepType.Warning, message));
        }