コード例 #1
0
    /// <summary>
    /// Current number of connections.
    /// </summary>
    public uint NumberOfConnections()
    {
        if (peer == null)
        {
            return(0);
        }

        return(peer.NumberOfConnections());
    }