C# Класс Candor.ExecutionResults

Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
AppendError ( string message ) : void

Adds a new error to the result.

AppendErrorFormat ( string message ) : void

Adds a new error 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.

AppendErrors ( StringCollection messages ) : void

Adds new errors to the result.

AppendErrors ( string messages ) : void

Adds new errors to the result.

AppendInfo ( string message ) : void

Adds a new info to the result.

AppendInfoFormat ( string message ) : void

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.

AppendInfos ( StringCollection messages ) : void

Adds new infos to the result.

AppendInfos ( string messages ) : void

Adds new infos to the result.

AppendWarning ( string message ) : void

Adds a new warning to the result.

AppendWarningFormat ( string message ) : void

Adds a new warning 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.

AppendWarnings ( StringCollection messages ) : void

Adds new warnings to the result.

AppendWarnings ( string messages ) : void

Adds new warnings to the result.

Combine ( ExecutionResults results ) : void

Combines the results of another ExecutionResults into this instance.

ExecutionResults ( ) : System

Creates a new instance of ExecutionResults.

Fail ( ) : void

Fails the result without adding a reason why.

Reset ( ) : void

Resets this instance to a successful state and clears all error and warning messages.

ToHtmlString ( ) : string

Outputs the results as an Html string.

ToString ( ) : string

Converts the results of this instance into a single string.

ToString ( string delimeter ) : string

Converts the results of this instance into a single string using the supplied delimeter.

ToString ( string itemFormat, string delimeter ) : string

Converts the results of this instance into a single string using the supplied delimeter.

Описание методов

AppendError() публичный метод

Adds a new error to the result.
public AppendError ( string message ) : void
message string The error message.
Результат void

AppendErrorFormat() публичный метод

Adds a new error 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 AppendErrorFormat ( string message ) : void
message string The error message format with zero or /// more format items.
Результат void

AppendErrors() публичный метод

Adds new errors to the result.
public AppendErrors ( StringCollection messages ) : void
messages System.Collections.Specialized.StringCollection A collection of error messages.
Результат void

AppendErrors() публичный метод

Adds new errors to the result.
public AppendErrors ( string messages ) : void
messages string An array of error messages.
Результат void

AppendInfo() публичный метод

Adds a new info to the result.
public AppendInfo ( string message ) : void
message string The info message.
Результат void

AppendInfoFormat() публичный метод

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.
Результат void

AppendInfos() публичный метод

Adds new infos to the result.
public AppendInfos ( StringCollection messages ) : void
messages System.Collections.Specialized.StringCollection A collection of info messages.
Результат void

AppendInfos() публичный метод

Adds new infos to the result.
public AppendInfos ( string messages ) : void
messages string An array of info messages.
Результат void

AppendWarning() публичный метод

Adds a new warning to the result.
public AppendWarning ( string message ) : void
message string The warning message.
Результат void

AppendWarningFormat() публичный метод

Adds a new warning 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 AppendWarningFormat ( string message ) : void
message string The warning message format with zero or /// more format items.
Результат void

AppendWarnings() публичный метод

Adds new warnings to the result.
public AppendWarnings ( StringCollection messages ) : void
messages System.Collections.Specialized.StringCollection A collection of warning messages.
Результат void

AppendWarnings() публичный метод

Adds new warnings to the result.
public AppendWarnings ( string messages ) : void
messages string An array of warning messages.
Результат void

Combine() публичный метод

Combines the results of another ExecutionResults into this instance.
public Combine ( ExecutionResults results ) : void
results ExecutionResults The results to be combined.
Результат void

ExecutionResults() публичный метод

Creates a new instance of ExecutionResults.
public ExecutionResults ( ) : System
Результат System

Fail() публичный метод

Fails the result without adding a reason why.
public Fail ( ) : void
Результат void

Reset() публичный метод

Resets this instance to a successful state and clears all error and warning messages.
public Reset ( ) : void
Результат void

ToHtmlString() публичный метод

Outputs the results as an Html string.
public ToHtmlString ( ) : string
Результат string

ToString() публичный метод

Converts the results of this instance into a single string.
public ToString ( ) : string
Результат string

ToString() публичный метод

Converts the results of this instance into a single string using the supplied delimeter.
public ToString ( string delimeter ) : string
delimeter string Optional, a string to place /// between each execution step. Pass in /// 'null' or an empty string for no delimeter.
Результат string

ToString() публичный метод

Converts the results of this instance into a single string using the supplied delimeter.
public ToString ( string itemFormat, string delimeter ) : string
itemFormat string The format for each execution step. /// Use '{Message}' in the format string to locate the message. /// Use '{StepType}' in the format string to locate the step type name. /// Do not include any other format specifications /// (IE. '{1}', '{2}', etc...)
delimeter string A string to place between each item.
Результат string