IFormCollection Interface

 

Contains the parsed form values.

Namespace:   Microsoft.Owin
Assembly:  Microsoft.Owin (in Microsoft.Owin.dll)

public interface class IFormCollection : IReadableStringCollection, 
	IEnumerable<KeyValuePair<String^, array<String^>^>>, IEnumerable

NameDescription
System_CAPS_pubpropertyItem[String^]

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

NameDescription
System_CAPS_pubmethodGet(String^)

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

System_CAPS_pubmethodGetEnumerator()

(Inherited from IEnumerable<T>.)

System_CAPS_pubmethodGetValues(String^)

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

Return to top
Show: