Read-only.
This property contains all successful results of Ping operation, in milliseconds.
Usage
pdata.SuccessfulTime(index)
Example
Set tcpip = CreateObject("SHOTIP.Connection")
Set pdata = tcpip.Ping(thathost)
For i=0 to pdata.SuccessfulCount-1
Response.Write "<BR>Time: " & pdata.SuccessfulTime(i)
Next