Candor.ExecutionResults.AppendInfoFormat C# (CSharp) Method

AppendInfoFormat() public method

Adds a new info to the result replacing the format items in the message with the text equivalent of the specified args. Each format specification is replaced by the string representation of the corresponding item in the object argument.
public AppendInfoFormat ( string message ) : void
message string The info message format with zero or /// more format items.
return void
        public void AppendInfoFormat( string message, params object[] args )
        {
            if (message == null)
                throw new ArgumentNullException("message");
            if (args == null)
                throw new ArgumentNullException("args");

            messages_.Add(new ExecutionStep(ExecutionStepType.Info, string.Format(message, args)));
        }