ObjectForm Constructor (String, String, Object, String)

HttpServer.dll

Initializes a new instance of the ObjectForm class.

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

Syntax

C#
public ObjectForm(
	string action,
	string name,
	Object obj,
	string method
)
Visual Basic (Declaration)
Public Sub New ( _
	action As String, _
	name As String, _
	obj As Object, _
	method As String _
)
Visual C++
public:
ObjectForm(
	String^ action, 
	String^ name, 
	Object^ obj, 
	String^ method
)

Parameters

action
Type: System..::.String
action to do when form is posted.
name
Type: System..::.String
form name *and* id.
obj
Type: System..::.Object

[Missing <param name="obj"/> documentation for "M:HttpServer.Helpers.ObjectForm.#ctor(System.String,System.String,System.Object,System.String)"]

method
Type: System..::.String

[Missing <param name="method"/> documentation for "M:HttpServer.Helpers.ObjectForm.#ctor(System.String,System.String,System.Object,System.String)"]

See Also