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