AngleSharp by AngleSharp

<PackageReference Include="AngleSharp" Version="0.9.10" />

 FormDataSetEntry

public abstract class FormDataSetEntry
Encapsulates the data contained in an entry.
using System.Text; namespace AngleSharp.Html { public abstract class FormDataSetEntry { private readonly string _name; private readonly string _type; public bool HasName => _name != null; public string Name => _name ?? string.Empty; public string Type => _type ?? InputTypeNames.Text; public FormDataSetEntry(string name, string type) { _name = name; _type = type; } public abstract void Accept(IFormDataSetVisitor visitor); public abstract bool Contains(string boundary, Encoding encoding); } }