Virtual Serial Port Tools - Advanced serial port configurations for your custom ports usage scenario
Download Virtual Serial Port Tools Hide this button

IRemotePortDescription Interface

interface IRemotePortDescription {
    // Properties
    readonly ${name}: string;
    readonly ${port}: number;
}
public interface IRemotePortDescription
{
    // Properties
    string ${name} { get; }
    uint ${port} { get; }
}
struct IRemotePortDescription : IDispatch
{
    // Properties
    _bstr_t ${name};  // get 
    unsigned int ${port};  // get 
};

IRemotePortDescription Properties

name

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

Holds the remote port name. This property is read-only.

port

readonly port: number;
uint port { get; }
unsigned int port;  // get 

Holds the remote port number. This property is read-only.