InetTransport.GetOutgoingConnectionCount
Returns the number of active outgoing connections.
[C++]
int GetOutgoingConnectionCount();
[Pascal]
function GetOutgoingConnectionCount : Integer;
[VB6]
Function IMCXInetTransport3.GetOutgoingConnectionCount() As Long
[ActiveX]
HRESULT _stdcall IMCXInetTransport3.GetOutgoingConnectionCount([out, retval] long * res);
[C#]
public int GetOutgoingConnectionCount();
[VB.NET]
Public Overrides Function GetOutgoingMessagesCount() As Integer
[Java]
public int getOutgoingConnectionCount();
[Java ME]
public int getOutgoingConnectionCount();
[Palm]
int GetOutgoingConnectionCount();
[DLL]
unsigned long MCInetTransportGetOutgoingConnectionCount(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 outgoing connections currently established with this transport.
|