Open this Phidget remotely using an IP Address, and a specific serial number.

Namespace:  Phidgets
Assembly:  Phidget21.NET (in Phidget21.NET.dll) Version: 2.1.9.34

Syntax

C#
public void open(
	int serialNumber,
	string IPAddress,
	int port
)
Visual Basic (Declaration)
Public Sub open ( _
	serialNumber As Integer, _
	IPAddress As String, _
	port As Integer _
)
Visual C++
public:
void open(
	int serialNumber, 
	String^ IPAddress, 
	int port
)

Parameters

serialNumber
Type: System..::.Int32
The Serial Number
IPAddress
Type: System..::.String
IP Address or hostname of the Phidget Webservice
port
Type: System..::.Int32
Port of the Phidget Webservice

Remarks

This version of open is network based.

This version of open specifies a serial number - The serial number is a unique number assigned to each Phidget during production and can be used to uniquely identify specific phidgets. use open(string IPAddress, int port) to open a device without specifying the serial number.

See Also