UDPTransport.MessengerPort
UDPTransport
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] MIDP 2.0 only
public void setMessengerPort(int value);
public int getMessengerPort();
[Palm]
void setMessengerPort(unsigned Value);
unsigned getMessengerPort(void);
[DLL]
void __stdcall MCUDPTransportSetMessengerPort(HMCUDPTransport h, unsigned short value);
unsigned short __stdcall MCUDPTransportGetMessengerPort(HMCUDPTransport 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 send messages 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.
|