IReadableStringCollection Interface

Definition

Accessors for headers, query, forms, etc.

public interface IReadableStringCollection : System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string,string[]>>
type IReadableStringCollection = interface
    interface seq<KeyValuePair<string, string[]>>
    interface IEnumerable
Public Interface IReadableStringCollection
Implements IEnumerable(Of KeyValuePair(Of String, String()))
Derived
Implements

Properties

Item[String]

Get the associated value from the collection. Multiple values will be merged. Returns null if the key is not present.

Methods

Get(String)

Get the associated value from the collection. Multiple values will be merged. Returns null if the key is not present.

GetValues(String)

Get the associated values from the collection in their original format. Returns null if the key is not present.

Applies to