Represents the information used to describe a custom step.
C# Syntax
public struct ReportAdditionalInfo
Name | Description | |
---|---|---|
![]() | Description | The description of the step. C# Syntax public string Description {get; set;} |
![]() | Status | The status of the step. C# Syntax public Status Status {get; set;} |
![]() | Exception | The exception of the step if necessary. C# Syntax public Exception Exception {get; set;} |
![]() | Image | The image of the step. Set this property only if "ImagePath" property was not set. C# Syntax public Image Image {} |
![]() | ImagePath | The path to the image of the step. Set this property only if "Image" property was not set. C# Syntax public string ImagePath {} |
![]() | Data | Custom additional data of the step. C# Syntax public IDictionary<string,object> Data {get; set;} |