Пример #1
0
 void IWMSCacheProxy.CreateCacheItemCollection( out IWMSCacheItemCollection ppCacheItemCollection )
 {
     Debug.WriteLine("IWMSCacheProxy.CreateCacheItemCollection entered");
     IWMSCacheItemCollectionImpl obj = new IWMSCacheItemCollectionImpl(this,DS.Tables["CachedItems"]);
     ppCacheItemCollection = obj as IWMSCacheItemCollection;
     return;
 }
Пример #2
0
 public IWMSCacheItemDescriptorImpl(IWMSCacheItemCollectionImpl collection,DataRow row)
 {
     Row = row;
     Collection = collection;
 }