InetTransport.AttemptsInterval
InetTransport
See also
Specifies the interval between attempts to send the message.
[C++]
void setAttemptsInterval(unsigned long Value);
unsigned long getAttemptsInterval();
[Pascal]
property AttemptsInterval : cardinal;
[VB6]
Property AttempsInterval As Long
[ActiveX]
HRESULT _stdcall AttempsInterval([in] unsigned long Value );
HRESULT _stdcall AttempsInterval([out, retval] unsigned long * Value );
[C#]
public long AttemptsInterval;
[VB.NET]
Public Property AttemptsInterval As Long
[Java]
public void setAttemptsInterval(long value);
public long getAttemptsInterval();
[Java ME]
public void setAttemptsInterval(long value);
public long getAttemptsInterval();
[Palm]
void setAttemptsInterval(unsigned long Value);
unsigned long getAttemptsInterval(void);
[DLL]
void __stdcall MCInetTransportSetAttemptsInterval(HMCInetTransport h, unsigned long value);
unsigned long __stdcall MCInetTransportGetAttemptsInterval(HMCInetTransport h);
- h - handle to the object that was returned by Create method
This property specifies the time between attempts to connect to the remote server. This property is effective when the value of AttemptsToConnect property is not 1. The value for AttemptsInterval is specified in milliseconds.
This property is only active when InetTransport is in peer-to-peer and client transport modes.
|