public void RemoveCollection(UPnPComplexType.ItemCollection ic) { this.NestedCollectionList.Remove(ic); ic.ParentCollection = null; }
public void RemoveCollection(UPnPComplexType.ItemCollection e) { this.CollectionList.Remove(e); e.ParentContainer = null; }
public void AddCollection(UPnPComplexType.ItemCollection ic) { this.NestedCollectionList.Add(ic); ic.ParentCollection = this; }
public void AddCollection(UPnPComplexType.ItemCollection e) { this.CollectionList.Add(e); e.ParentContainer = this; }