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