AnimatGuiCtrls.Network.Ping.EndPingHost C# (CSharp) Method

EndPingHost() public method

public EndPingHost ( IAsyncResult result ) : PingResponse
result IAsyncResult
return PingResponse
        public PingResponse EndPingHost(IAsyncResult result)
        {
            if (asyncPingProcessor == null)
                return null;

            return asyncPingProcessor.EndInvoke(result);
        }