Beispiel #1
0
        public bool Remove(string key)
        {
            WeaveTable temp = temps.Find(x => x.Key == key);

            temps.Remove(temp);
            return(true);
        }
Beispiel #2
0
 public bool Add(string key, object value)
 {
     try
     {
         WeaveTable t = new WeaveTable();
         t.Key   = key;
         t.Value = value;
         temps.Add(t);
         return(true);
     }
     catch { return(false); }
 }
Beispiel #3
0
 public void SetGlobalQueueTable(WeaveTable weaveTable, List <WeaveTcpToken> TcpTokenlist)
 {
     WeaveTcpTokenList = TcpTokenlist;
     GlobalQueueTable  = weaveTable;
 }