IFormCollection Interface
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Contains the parsed form values.
public interface IFormCollection : Microsoft.Owin.IReadableStringCollection, System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string,string[]>>
type IFormCollection = interface
interface IReadableStringCollection
interface seq<KeyValuePair<string, string[]>>
interface IEnumerable
Public Interface IFormCollection
Implements IEnumerable(Of KeyValuePair(Of String, String())), IReadableStringCollection
- 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. (Inherited from IReadableStringCollection) |
Methods
Get(String) |
Get the associated value from the collection. Multiple values will be merged. Returns null if the key is not present. (Inherited from IReadableStringCollection) |
GetValues(String) |
Get the associated values from the collection in their original format. Returns null if the key is not present. (Inherited from IReadableStringCollection) |