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

ISharedUsbDevice Interface

This interface is implemented by a shared USB device object.

Declaration

interface ISharedUsbDevice {
    // Properties
    readonly ${localDevice}: ${IUsbDevice};
    readonly ${authKey}: string;
}
public interface ISharedUsbDevice
{
    // Properties
    ${IUsbDevice} ${localDevice} { get; }
    string ${authKey} { get; }
}
struct ISharedUsbDevice : IDispatch
{
    // Properties
    ${IUsbDevicePtr#IUsbDevice} ${localDevice};  // get 
    _bstr_t ${authKey};  // get 
};

ISharedUsbDevice Properties

localDevice

readonly localDevice: ${IUsbDevice};
${IUsbDevice} localDevice { get; }
${IUsbDevicePtr#IUsbDevice} localDevice;  // get 

A reference to a local USB device.

authKey

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

Connection authentication key.