Writes a value to the point and optionally returns the status code of the write operation throught the callback.

Namespace: Ico.Fwx.ClientWrapper
Assembly: IcoFwxClientWrapper (in IcoFwxClientWrapper.dll) Version: 10.97.212.0 (10.97.212.00)

Syntax

C#
public void WriteAsync(
	string pointName,
	Object value,
	WriteDoneDelegate writeDone,
	Object userState
)
Visual Basic
Public Sub WriteAsync ( _
	pointName As String, _
	value As Object, _
	writeDone As WriteDoneDelegate, _
	userState As Object _
)
JScript
public function WriteAsync(
	pointName : String, 
	value : Object, 
	writeDone : WriteDoneDelegate, 
	userState : Object
)

Parameters

pointName
Type: System..::..String
The point name to write into.
value
Type: System..::..Object
The value to write.
writeDone
Type: Ico.Fwx.ClientWrapper..::..WriteDoneDelegate
An optional callback with the result of the write operation. If the WriteAsync function is called from an UI thread, the callback will arrive also on the UI thread.
userState
Type: System..::..Object
An optional user object.

See Also