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:
HttpServerAssembly: HttpServer (in HttpServer.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
| C# |
|---|
public class HttpInputItem : IHttpInput, IEnumerable<HttpInputItem>, IEnumerable |
| Visual Basic (Declaration) |
|---|
Public Class HttpInputItem _ Implements IHttpInput, IEnumerable(Of HttpInputItem), _ IEnumerable |
| Visual C++ |
|---|
public ref class HttpInputItem : IHttpInput, IEnumerable<HttpInputItem^>, IEnumerable |
Remarks
All names in a form SHOULD be in lowercase.
Examples
// becomes:
Console.WriteLine("Value: {0}", form["user"]["FirstName"].Value);