InetTransport.GetIncomingConnectionCount
Returns the number of active incoming connections.
[C++]
int GetIncomingConnectionCount();
[Pascal]
function GetIncomingConnectionCount : Integer;
[VB6]
Function IMCXInetTransport3.GetIncomingConnectionCount() As Long
[ActiveX]
HRESULT _stdcall IMCXInetTransport3.GetIncomingConnectionCount([out, retval] long * res);
[C#]
public int GetIncomingConnectionCount();
[VB.NET]
Public Function GetIncomingConnectionCount() As Integer
[Java]
public int getIncomingConnectionCount();
[Java ME]
public int getIncomingConnectionCount();
[Palm]
int GetIncomingConnectionCount();
[DLL]
unsigned long MCInetTransportGetIncomingConnectionCount(HMCInetTransport h);
- [DLL]h - handle to the InetTransport object that was returned by Create method
- res - result of method execution (see Return value for details)
The number of active connections.
Use this method to get the number of incoming connections currently established with this transport.
|