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
};
readonly name: string;
string name { get; }
_bstr_t name; // get
Holds the remote port name. This property is read-only.
readonly port: number;
uint port { get; }
unsigned int port; // get
Holds the remote port number. This property is read-only.