Méthode | Description | |
---|---|---|
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 ( |
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 ( |
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 ( |
Adds new warnings to the result.
|
|
AppendWarnings ( string messages ) : void |
Adds new warnings to the result.
|
|
Combine ( |
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.
|
public AppendError ( string message ) : void | ||
message | string | The error message. |
Résultat | void |
public AppendErrorFormat ( string message ) : void | ||
message | string | The error message format with zero or /// more format items. |
Résultat | void |
public AppendErrors ( |
||
messages | A collection of error messages. | |
Résultat | void |
public AppendErrors ( string messages ) : void | ||
messages | string | An array of error messages. |
Résultat | void |
public AppendInfo ( string message ) : void | ||
message | string | The info message. |
Résultat | void |
public AppendInfoFormat ( string message ) : void | ||
message | string | The info message format with zero or /// more format items. |
Résultat | void |
public AppendInfos ( |
||
messages | A collection of info messages. | |
Résultat | void |
public AppendInfos ( string messages ) : void | ||
messages | string | An array of info messages. |
Résultat | void |
public AppendWarning ( string message ) : void | ||
message | string | The warning message. |
Résultat | void |
public AppendWarningFormat ( string message ) : void | ||
message | string | The warning message format with zero or /// more format items. |
Résultat | void |
public AppendWarnings ( |
||
messages | A collection of warning messages. | |
Résultat | void |
public AppendWarnings ( string messages ) : void | ||
messages | string | An array of warning messages. |
Résultat | void |
public Combine ( |
||
results | The results to be combined. | |
Résultat | void |
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. |
Résultat | string |
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. |
Résultat | string |