Esempio n. 1
0
 public CollectionDeletedEventArgs(SharedCollection collection, string name)
 {
     this.Collection = collection;
     this.Name = name;
 }
Esempio n. 2
0
 public CollectionConnectedEventArgs(SharedCollection target, string name, bool created)
     : base(created)
 {
     this.Collection = target;
     this.Name = name;
 }
Esempio n. 3
0
 public CollectionDeletedEventArgs(SharedCollection collection, string name)
 {
     this.Collection = collection;
     this.Name       = name;
 }
Esempio n. 4
0
 public void CloseCollection(SharedCollection collection)
 {
     this.CollectionsManager.Close(collection.Id);
 }
Esempio n. 5
0
 public CollectionConnectedEventArgs(SharedCollection target, string name, bool created)
     : base(created)
 {
     this.Collection = target;
     this.Name       = name;
 }