FormControlState
Class to store the state of a form control.
namespace AngleSharp.Html
{
internal sealed class FormControlState
{
private readonly string _name;
private readonly string _type;
private readonly string _value;
public string Name => _name;
public string Value => _value;
public string Type => _type;
internal FormControlState(string name, string type, string value)
{
_name = name;
_type = type;
_value = value;
}
}
}