UDPTransport.MessengerAddress
UDPTransport
See also
Specifies the address of the transport to which the socket is bound.
[C++]
void setMessengerAddress(char* Value);
char* getMessengerAddress(void);
[Pascal]
property MessengerAddress : string;
[VB6]
Property MessengerAddress As String
[ActiveX]
HRESULT _stdcall MessengerAddress([in] BSTR Value );
HRESULT _stdcall MessengerAddress([out, retval] BSTR * Value );
[C#]
public string MessengerAddress;
[VB.NET]
Public Property MessengerAddress As String
[Java]
public void setMessengerAddress(String value);
public String getMessengerAddress();
[Java ME] MIDP 2.0 only
public void setMessengerAddress(String value);
public String getMessengerAddress();
[Palm]
void setMessengerAddress(char* Value);
char* getMessengerAddress(void);
[DLL]
void __stdcall MCUDPTransportSetMessengerAddress(HMCUDPTransport h, char* value);
char* __stdcall MCUDPTransportGetMessengerAddress(HMCUDPTransport h);
- h - handle to the object that was returned by Create method
This property specifies the address to which the socket is bound.
Use 0.0.0.0 to bind the UDP to all available network interfaces or use interface-specific IP address to bind the socket to only one interface.
|