コード例 #1
0
ファイル: UPnPComplexType.cs プロジェクト: L2N6H5B3/SoftSled2
 public void RemoveCollection(UPnPComplexType.ItemCollection ic)
 {
     this.NestedCollectionList.Remove(ic);
     ic.ParentCollection = null;
 }
コード例 #2
0
ファイル: UPnPComplexType.cs プロジェクト: L2N6H5B3/SoftSled2
 public void RemoveCollection(UPnPComplexType.ItemCollection e)
 {
     this.CollectionList.Remove(e);
     e.ParentContainer = null;
 }
コード例 #3
0
ファイル: UPnPComplexType.cs プロジェクト: L2N6H5B3/SoftSled2
 public void AddCollection(UPnPComplexType.ItemCollection ic)
 {
     this.NestedCollectionList.Add(ic);
     ic.ParentCollection = this;
 }
コード例 #4
0
ファイル: UPnPComplexType.cs プロジェクト: L2N6H5B3/SoftSled2
 public void AddCollection(UPnPComplexType.ItemCollection e)
 {
     this.CollectionList.Add(e);
     e.ParentContainer = this;
 }