WebHelpers.ParseForm Method

Parses an HTTP form body.

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

Syntax

'Declaration
Public Shared Function ParseForm ( _
    text As String _
) As IFormCollection
'Usage
Dim text As String 
Dim returnValue As IFormCollection 

returnValue = WebHelpers.ParseForm(text)
public static IFormCollection ParseForm(
    string text
)
public:
static IFormCollection^ ParseForm(
    String^ text
)
static member ParseForm : 
        text:string -> IFormCollection
public static function ParseForm(
    text : String
) : IFormCollection

Parameters

Return Value

Type: Microsoft.Owin.IFormCollection
The IFormCollection object containing the parsed HTTP form body.

See Also

Reference

WebHelpers Class

Microsoft.Owin.Helpers Namespace