AnimatGuiCtrls.Network.Ping.EndPingHost C# (CSharp) Метод

EndPingHost() публичный Метод

public EndPingHost ( IAsyncResult result ) : PingResponse
result IAsyncResult
Результат PingResponse
        public PingResponse EndPingHost(IAsyncResult result)
        {
            if (asyncPingProcessor == null)
                return null;

            return asyncPingProcessor.EndInvoke(result);
        }