Ejemplo n.º 1
0
    public BUStats GetStats()
    {
        BUStats stats = new BUStats();

        if (rgc != null)
        {
            stats.WsPing = rgc.GetPing();
        }

        if (rgc.GetUdpSubClient() != null)
        {
            stats.UdpPing = rgc.GetUdpSubClient().GetPing();
        }

        return(stats);
    }