Class TestTableFile
public record TestTableFile : IEquatable<TestTableFile>
- Inheritance
-
TestTableFile
- Implements
- Inherited Members
Properties
Comment
[JsonPropertyName("comment")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
public string? Comment { get; set; }
Property Value
ParameterNames
[JsonPropertyName("parameterNames")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
public List<string>? ParameterNames { get; set; }
Property Value
TestMethod
[JsonPropertyName("testMethod")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
public string? TestMethod { get; set; }
Property Value
TestTable
[JsonPropertyName("testTable")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
public List<TestTableItem>? TestTable { get; set; }
Property Value
Methods
FromJson(string, JsonSerializerOptions?)
Deserializes a JSON string to a TestTableFile object.
public static TestTableFile? FromJson(string jsonString, JsonSerializerOptions? options = null)
Parameters
jsonStringstringThe JSON string to deserialize.
optionsJsonSerializerOptionsOptional JsonSerializerOptions.
Returns
- TestTableFile
The deserialized TestTableFile object, or null if deserialization fails.