Update Method (String, Object)

HttpServer.dll

Updates an already added argument

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

Syntax

C#
public void Update(
	string argumentName,
	Object argumentObject
)
Visual Basic (Declaration)
Public Sub Update ( _
	argumentName As String, _
	argumentObject As Object _
)
Visual C++
public:
void Update(
	String^ argumentName, 
	Object^ argumentObject
)

Parameters

argumentName
Type: System..::.String
Cannot be null
argumentObject
Type: System..::.Object
Cannot be null

Exceptions

ExceptionCondition
System..::.ArgumentExceptionIf no argument named argumentName exists
System..::.ArgumentNullExceptionIf argumentName or argumentObject is null

See Also