IUrlSearchParams Interface
Provides methods to work with URLs query string.

Namespace: Aspose.Html
Assembly: Aspose.HTML (in Aspose.HTML.dll) Version: 20.3
Syntax
public interface IUrlSearchParams : IEnumerable<string[]>, 
	IEnumerable

The IUrlSearchParams type exposes the following members.

Methods
  NameDescription
Public methodAppend
Appends a new name-value pair whose name is name and value is value.
Public methodDelete
Removes all name-value pairs whose name is name.
Public methodGet
Returns value of the first name-value pair whose name is name.
Public methodGetAll
Returns all values whose name is name.
Public methodGetEnumerator (Inherited from IEnumerableString.)
Public methodHas
Checks if there is a name-value pair whose name is name in list.
Public methodSet
Sets value of the first found name-value pair to the specified value and removes the others. If no name-value pairs with the specified name are found, new one will be appended to the list.
Public methodSort
Sorts all name-value pairs, if any, by their names.
See Also