Candor.ExecutionResults.AppendWarnings C# (CSharp) Method

AppendWarnings() public method

Adds new warnings to the result.
public AppendWarnings ( StringCollection messages ) : void
messages System.Collections.Specialized.StringCollection A collection of warning messages.
return void
        public void AppendWarnings( StringCollection messages )
        {
            if (messages == null || messages.Count == 0)
                return;

            for (int i = 0; i < messages.Count; i++)
            {
                messages_.Add(new ExecutionStep(ExecutionStepType.Warning, messages[i]));
            }
        }

Same methods

ExecutionResults::AppendWarnings ( string messages ) : void