InetTransport.MessengerPort
InetTransport
See also
Specifies the port to which the socket will be bound.
[C++]
void setMessengerPort(unsigned Value);
unsigned getMessengerPort(void);
[Pascal]
property MessengerPort : word;
[VB6]
Property MessengerPort As Long
[ActiveX]
HRESULT _stdcall MessengerPort([in] unsigned long Value );
HRESULT _stdcall MessengerPort([out, retval] unsigned long * Value );
[C#]
public int MessengerPort;
[VB.NET]
Public Property MessengerPort As Integer
[Java]
public void setMessengerPort(int value);
public int getMessengerPort();
[Java ME]
public void setMessengerPort(int value);
public int getMessengerPort();
[Palm]
void setMessengerPort(unsigned Value);
unsigned getMessengerPort(void);
[DLL]
void __stdcall MCInetTransportSetMessengerPort(HMCInetTransport h, unsigned short value);
unsigned short __stdcall MCInetTransportGetMessengerPort(HMCInetTransport h);
- h - handle to the object that was returned by Create method
Specifies the port to which the socket will be bound.
Remote clients will connect to this port. If TransportMode is stmP2P or stmServer, then the transport can't be activated until the port is set to some non-zero value.
|