public void CopyFrom(CachedDataTableIdentifier source)
 {
     Server   = source.Server;
     Database = source.Database;
     DataType = source.DataType;
     Name     = source.Name;
     Timeout  = source.Timeout;
 }
 public CachedDataTableIdentifier(string server, string database, string name, CachedDataType dataType)
 {
     Server   = server;
     Database = database;
     DataType = dataType;
     Name     = name;
     Timeout  = 0;
 }