Open this Phidget remotely and securely, 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,
	string password
)
Visual Basic (Declaration)
Public Sub open ( _
	serialNumber As Integer, _
	IPAddress As String, _
	port As Integer, _
	password As String _
)
Visual C++
public:
void open(
	int serialNumber, 
	String^ IPAddress, 
	int port, 
	String^ password
)

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
password
Type: System..::.String
The secure password for the Phidget Webservice

Remarks

This version of open is network based.

This method is the same as open(int serialNumber, string IPAddress, int port), except that it specifies a password. This password can be set as a parameter when starting the Phidget Webservice.

See Also