AngleSharp by AngleSharp

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

 FormDataSetEntry

public abstract class FormDataSetEntry
Encapsulates the data contained in an entry.
public bool HasName { get; }

Gets if the name has been given.

public string Name { get; }

Gets the entry's name.

public string Type { get; }

Gets the entry's type.

public FormDataSetEntry(string name, string type)

Creates a new form data set entry.

public abstract void Accept(IFormDataSetVisitor visitor)

Accepts the provided visitor instance.

public abstract bool Contains(string boundary, Encoding encoding)

Checks if the provided boundary is already mentioned in the content.