コード例 #1
0
 public void ReplacePostAt(PostType newValue, int index)
 {
     ReplaceDomElementAt("", "Post", index, newValue);
 }
コード例 #2
0
 public XmlNode AddPost(PostType newValue)
 {
     return(AppendDomElement("", "Post", newValue));
 }
コード例 #3
0
 public void InsertPostAt(PostType newValue, int index)
 {
     InsertDomElementAt("", "Post", index, newValue);
 }
コード例 #4
0
ファイル: PostType.cs プロジェクト: paladin74/Dapple
 public OnlineResourceEnumerator(PostType par)
 {
     parent = par;
     nIndex = -1;
 }
コード例 #5
0
ファイル: PostType.cs プロジェクト: paladin74/Dapple
 public OnlineResourceEnumerator(PostType par)
 {
     parent = par;
     nIndex = -1;
 }
コード例 #6
0
ファイル: HTTPType.cs プロジェクト: paladin74/Dapple
 public void ReplacePostAt(PostType newValue, int index)
 {
     ReplaceDomElementAt("", "Post", index, newValue);
 }
コード例 #7
0
ファイル: HTTPType.cs プロジェクト: paladin74/Dapple
 public void InsertPostAt(PostType newValue, int index)
 {
     InsertDomElementAt("", "Post", index, newValue);
 }
コード例 #8
0
ファイル: HTTPType.cs プロジェクト: paladin74/Dapple
 public XmlNode AddPost(PostType newValue)
 {
     return AppendDomElement("", "Post", newValue);
 }