AngleSharp by AngleSharp

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

.NET API 962,560 bytes

 UrlSearchParams

public class UrlSearchParams
Represents a list of query parameters.
public UrlSearchParams()

Creates a new instance.

public UrlSearchParams(string init)

Creates a new instance filled from the provided string.

public void Append(string name, string value)

Appends another value for the given search param name.

public void Delete(string name)

Deletes the values of the search param name.

public string Get(string name)

Gets the first value of the given search param name, if any.

public string[] GetAll(string name)

Gets all values for the given search param name.

public bool Has(string name)

Checks if a search param with the given name exists.

public void Set(string name, string value)

Sets the given search param.

public void Sort()

Sorts the underlying list.