Class NameAndValue
- Namespace
- CSF.Screenplay.Reporting
- Assembly
- CSF.Screenplay.Abstractions.dll
A simple model for a value that is to be included in a formatted ReportFragment, which has an associated name.
public class NameAndValue
- Inheritance
-
NameAndValue
- Inherited Members
Constructors
NameAndValue(string, object)
Initializes a new instance of NameAndValue.
public NameAndValue(string name, object value)
Parameters
Exceptions
- ArgumentNullException
If
name
is null.
Properties
Name
Gets the name associated with this value.
public string Name { get; }
Property Value
Value
Gets the value.
public object Value { get; }