







represents a http input item. Each item can have multiple sub items, a sub item
is made in a html form by using square brackets
Namespace:
HttpServer
Assembly:
HttpServer (in HttpServer.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
| C# |
|---|
public class HttpInputItem : HttpInputBase, IEnumerable<HttpInputItem>, IEnumerable |
| Visual Basic (Declaration) |
|---|
Public Class HttpInputItem _ Implements HttpInputBase, IEnumerable(Of HttpInputItem), _ IEnumerable |
| Visual C++ |
|---|
public ref class HttpInputItem : HttpInputBase, IEnumerable<HttpInputItem^>, IEnumerable |
Remarks
All names in a form SHOULD be in lowercase.
Examples
// becomes:
Console.WriteLine("Value: {0}", form["user"]["FirstName"].Value);
