コード例 #1
0
ファイル: AppBase.cs プロジェクト: plonk/peercaststation
        void LoadConfigurations()
        {
            int backlog;

            if (AppSettingsReader.TryGetInt("MaxPendingConnections", out backlog) && backlog > 0)
            {
                OutputListener.MaxPendingConnections = backlog;
            }
        }