public void ReplacePostAt(PostType newValue, int index) { ReplaceDomElementAt("", "Post", index, newValue); }
public XmlNode AddPost(PostType newValue) { return(AppendDomElement("", "Post", newValue)); }
public void InsertPostAt(PostType newValue, int index) { InsertDomElementAt("", "Post", index, newValue); }
public OnlineResourceEnumerator(PostType par) { parent = par; nIndex = -1; }
public XmlNode AddPost(PostType newValue) { return AppendDomElement("", "Post", newValue); }