InetTransport.MessengerAddress
InetTransport
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]
public void setMessengerAddress(String value);
public String getMessengerAddress();
[Palm]
void setMessengerAddress(char* Value);
char* getMessengerAddress(void);
[DLL]
void __stdcall MCInetTransportSetMessengerAddress(HMCInetTransport h, char* value);
char* __stdcall MCInetTransportGetMessengerAddress(HMCInetTransport h);
- h - handle to the object that was returned by Create method
This property specifies the address to which the transport is bound.
Use 0.0.0.0 to bind the socket to all available network interfaces or use interface-specific IP address to bind the socket to only one interface.
|