Class VerificationData
Represents the data used to report a custom verification step.
public class VerificationData
- Inheritance
-
VerificationData
- Inherited Members
Constructors
VerificationData()
Create a new instance of the VerificationData class.
public VerificationData()
Properties
Description
The verification description presented in the report file. If it is not set, this section will not be displayed.
public string Description { get; set; }
Property Value
Image
The verification image presented in the report file. If it is not set, this section will not be displayed.
public Image Image { get; set; }
Property Value
Name
The name of the verification presented in the report file.
public string Name { get; set; }
Property Value
OperationName
The name of the verification operation presented in the report file.
public string OperationName { get; set; }
Property Value
VerificationParameters
The verification parameters presented in the report file. For each of these parameters a new column data will be created.
public List<VerificationParameter> VerificationParameters { get; }