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

IUsbClient Interface

interface IUsbClient {
    // Properties
    readonly ${devicesJs}: ${IDevice}[];

    // Methods
    ${addDevice}(remoteAddress: string, deviceKey: string, authKey?: string): ${IDevice};
    ${getRemoteSharedDevices#getRemoteSharedDevices1}(remoteAddress: string): ${IRemoteDevice}[];
}
public interface IUsbClient
{
    // Properties
    Array ${devices} { get; }

    // Methods
    ${IDevice} ${addDevice}(string remoteAddress, string deviceKey, object authKey);
    Array ${getRemoteSharedDevices}(string remoteAddress);
    void ${addListener}(${IUsbClientListener} pListener);
    void ${removeListener}(${IUsbClientListener} pListener);
}
struct IUsbClient : IDispatch
{
    // Properties
    SAFEARRAY(${IDevice}) ${devices};  // get 

    // Methods
    ${IDevicePtr#IDevice} ${addDevice}(_bstr_t remoteAddress, _bstr_t deviceKey, const _variant_t & authKey);
    SAFEARRAY(${IRemoteDevice}) ${getRemoteSharedDevices}(_bstr_t remoteAddress);
    HRESULT ${addListener}(${IUsbClientListener *#IUsbClientListener} pListener);
    HRESULT ${removeListener}(${IUsbClientListener *#IUsbClientListener} pListener);
};

IUsbClient Properties

devices

// This property is not available in scripting environment
Array devices { get; }
SAFEARRAY(${IDevice}) devices;  // get 

Returns a list of all local USB devices. USB devices that are currently disconnected are also included in this list.

devicesJs

readonly devicesJs: ${IDevice}[];
// This property is not available in managed environment
// This property is not available in native environment

Returns a list of all local USB devices. USB devices that are currently disconnected are also included in this list.

IUsbClient Methods

addDevice

addDevice(remoteAddress: string, deviceKey: string, authKey?: string): ${IDevice};
${IDevice} addDevice(string remoteAddress, string deviceKey, object authKey);
${IDevicePtr#IDevice} addDevice(_bstr_t remoteAddress, _bstr_t deviceKey, const _variant_t & authKey);
remoteAddress
A full address of a remote server. Can be either a domain name, IPv4 or IPv6 address, followed by an optional TCP port number.
deviceKey
Unique USB device key, which identifies USB device on a server.
authKey
An optional string that contains an authentication key.

Add a new remote USB device.

getRemoteSharedDevices

// This method is not available in scripting environment
Array getRemoteSharedDevices(string remoteAddress);
SAFEARRAY(${IRemoteDevice}) getRemoteSharedDevices(_bstr_t remoteAddress);
remoteAddress
A full address of a remote server. Can be either a domain name, IPv4 or IPv6 address, followed by an optional TCP port number.

Obtain a list of shared USB devices from a remote server.

getRemoteSharedDevices

getRemoteSharedDevices(remoteAddress: string): ${IRemoteDevice}[];
// This method is not available in managed environment
// This method is not available in native environment
remoteAddress
A full address of a remote server. Can be either a domain name, IPv4 or IPv6 address, followed by an optional TCP port number.

Obtain a list of shared USB devices from a remote server.

addListener

// This method is not available in scripting environment
void addListener(${IUsbClientListener} pListener);
HRESULT addListener(${IUsbClientListener *#IUsbClientListener} pListener);
pListener
Pointer or reference to the listener interface implemented by the caller.

Adds specified listener object to the list of listener objects. When new USB device is connected, library calls methods of the supplied listener object, passing a reference to a connected device.

removeListener

// This method is not available in scripting environment
void removeListener(${IUsbClientListener} pListener);
HRESULT removeListener(${IUsbClientListener *#IUsbClientListener} pListener);
pListener
Pointer or reference to the listener interface implemented by the caller.

Removes specified listener object from the list of listener objects.