Exemple #1
0
        public Datastore(StoreType storeType)
        {
            IsLoaded          = false;
            ConnectionTime    = new Stopwatch();
            m_storeID         = new DatastoreID(StoreName, storeType);
            CompositeRegistry = new CompositeValueRegistry(this);

            InitializeProperties();
            RegisterCompositeValues(CompositeRegistry);
        }
Exemple #2
0
 public static string GetItemKey(DatastoreID storeID, int ID)
 {
     return(storeID.Name + "|" + ID.ToString());
 }