示例#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;
 }