コード例 #1
0
ファイル: IMService.cs プロジェクト: nandub/DeOps
        public void SetTTL(ushort client, int ttl)
        {
            if (!TTL.ContainsKey(client))
            {
                TTL[client] = new BoxInt();
            }

            TTL[client].Value = ttl;
        }
コード例 #2
0
ファイル: IMService.cs プロジェクト: RoelofSol/DeOps
        public void SetTTL(ushort client, int ttl)
        {
            if (!TTL.ContainsKey(client))
                TTL[client] = new BoxInt();

            TTL[client].Value = ttl;
        }