Virtual USB Tools - Advanced USB to TCP/IP network configurations for your USB usage scenario
Download Virtual USB Tools Hide this button

IRemoteDevice Interface

This interface is implemented by a remote USB device object.

Declaration

interface IRemoteDevice {
    // Properties
    readonly ${name}: string;
    readonly ${instanceId}: string;
    readonly ${deviceId}: string;
    readonly ${manufacturer}: string;
}
public interface IRemoteDevice
{
    // Properties
    string ${name} { get; }
    string ${instanceId} { get; }
    string ${deviceId} { get; }
    string ${manufacturer} { get; }
}
struct IRemoteDevice : IDispatch
{
    // Properties
    _bstr_t ${name};  // get 
    _bstr_t ${instanceId};  // get 
    _bstr_t ${deviceId};  // get 
    _bstr_t ${manufacturer};  // get 
};

IRemoteDevice Properties

name

readonly name: string;
string name { get; }
_bstr_t name;  // get 

Device name.

instanceId

readonly instanceId: string;
string instanceId { get; }
_bstr_t instanceId;  // get 

Device instance ID on a server computer.

deviceId

readonly deviceId: string;
string deviceId { get; }
_bstr_t deviceId;  // get 

Unique device ID on a server computer. Use this string when you connect this device to the client in a call to IUsbClient.addDevice method.

manufacturer

readonly manufacturer: string;
string manufacturer { get; }
_bstr_t manufacturer;  // get 

Device manufacturer.