public CollectionDeletedEventArgs(SharedCollection collection, string name) { this.Collection = collection; this.Name = name; }
public CollectionConnectedEventArgs(SharedCollection target, string name, bool created) : base(created) { this.Collection = target; this.Name = name; }
public void CloseCollection(SharedCollection collection) { this.CollectionsManager.Close(collection.Id); }