Table of Contents

Interface ISearchParams

Namespace
Velvet
Assembly
Velvet.Docs.dll

Read-only view over URL query parameters that preserves every value of a repeated key. Enumeration yields distinct keys in insertion order.

public interface ISearchParams

Properties

Count

Number of distinct keys.

Keys

Distinct keys in insertion order.

Methods

Get(string)

Returns the first value for a key, or null when the key is absent.

GetAll(string)

Returns every value for a key in insertion order, or an empty list when absent.

Has(string)