WebHelpers.ParseForm Method (String)
Parses an HTTP form body.
Namespace: Microsoft.Owin.Helpers
Assembly: Microsoft.Owin (in Microsoft.Owin.dll)
Syntax
public static IFormCollection ParseForm(
string text
)
public:
static IFormCollection^ ParseForm(
String^ text
)
static member ParseForm :
text:string -> IFormCollection
Public Shared Function ParseForm (
text As String
) As IFormCollection
Parameters
text
Type: System.StringThe HTTP form body to parse.
Return Value
Type: Microsoft.Owin.IFormCollection
The IFormCollection object containing the parsed HTTP form body.
See Also
WebHelpers Class
Microsoft.Owin.Helpers Namespace
Return to top