HttpTransport.ReqTime
HttpTransport
Shows time in seconds which client has to wait before getting answer for his request.
[C++]
void setReqTime(int ReqTime);
int getReqTime(void);
[Pascal]
property ReqTime : integer;
[VB6]
not implemented;
[ActiveX]
HRESULT ReqTime([in] long Value);
HRESULT ReqTime([out, retval] long* Value);
[C#]
public int ReqTime;
[VB.NET]
Public Property ReqTime As Long
[Java]
public void setReqTime(int ReqTime);
public int getReqTime();
[Java ME]
public void setReqTime(int ReqTime);
public int getReqTime();
[Palm]
void setReqTime(int ReqTime);
int getReqTime(void);
[DLL]
void __stdcall MCHttpTransportSetReqTime(HMCHttpTransport h, int RequestTime);
int __stdcall MCHttpTransportGetReqTime(HMCHttpTransport h);
- h - handle to the object that was returned by Create method
When connection is broken (in HTTP 1.0) the client will automatically reconnect to pick the answer after time specified in this property elapses.
|