Beispiel #1
0
 public TimeSpan GetLastUpdatedTime(MyTuple <IntelItemType, long> key)
 {
     if (Host != null)
     {
         return(Host.GetLastUpdatedTime(key));
     }
     if (!Timestamps.ContainsKey(key))
     {
         return(TimeSpan.MaxValue);
     }
     return(Timestamps[key]);
 }