public void InsertpreviewAt(SchemaBase64Binary newValue, int index) { if (newValue.IsNull() == false) { InsertDomChildAt(NodeType.Element, "", "preview", index, newValue.ToString()); } }
public XmlNode Addpreview(SchemaBase64Binary newValue) { if (newValue.IsNull() == false) { return(AppendDomChild(NodeType.Element, "", "preview", newValue.ToString())); } return(null); }