Add Method

HttpServer.dll

The add method is not availible for HttpParam since HttpParam checks both Request.Form and Request.QueryString

Namespace:  HttpServer
Assembly:  HttpServer (in HttpServer.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
[ObsoleteAttribute("Not implemented for HttpParam")]
public void Add(
	string name,
	string value
)
Visual Basic (Declaration)
<ObsoleteAttribute("Not implemented for HttpParam")> _
Public Sub Add ( _
	name As String, _
	value As String _
)
Visual C++
[ObsoleteAttribute(L"Not implemented for HttpParam")]
public:
virtual void Add(
	String^ name, 
	String^ value
) sealed

Parameters

name
Type: System..::.String
name identifying the value
value
Type: System..::.String
value to add

Implements

HttpInputBase..::.Add(String, String)

Exceptions

See Also