Open this Phidget remotely and securely, using a Server ID, without a serial number.

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

Syntax

C#
public void open(
	string ServerID,
	string password
)
Visual Basic (Declaration)
Public Sub open ( _
	ServerID As String, _
	password As String _
)
Visual C++
public:
void open(
	String^ ServerID, 
	String^ password
)

Parameters

ServerID
Type: System..::.String
ServerID 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 ServerID, String password), except that it specifies no serial number. Therefore, the first available Phidget will be opened. If there are two Phidgets of the same type attached to the system, you should specify a serial number, as there is no guarantee which Phidget will be selected by the call to open().

See Also