ReportAdditionalInfo Structure

Represents the information used to describe a custom step.

C# Syntax

public struct ReportAdditionalInfo 
Public Properties
 NameDescription
Public PropertyDescription

The description of the step.

C# Syntax

public string Description {get; set;}
Public PropertyStatus

The status of the step.

C# Syntax

public Status Status {get; set;}
Public PropertyException

The exception of the step if necessary.

C# Syntax

public Exception Exception {get; set;}
Public PropertyImage

The image of the step. Set this property only if "ImagePath" property was not set.

C# Syntax

public Image Image {}
Public PropertyImagePath

The path to the image of the step. Set this property only if "Image" property was not set.

C# Syntax

public string ImagePath {}
Public PropertyData

Custom additional data of the step.

C# Syntax

public IDictionary<string,object> Data {get; set;}
Top