public void InsertqueryableAt(EnumerationType2 newValue, int index) { if( newValue.IsNull() == false ) InsertDomChildAt(NodeType.Attribute, "", "queryable", index, newValue.ToString()); }
public void ReplacequeryableAt(EnumerationType2 newValue, int index) { ReplaceDomChildAt(NodeType.Attribute, "", "queryable", index, newValue.ToString()); }
public XmlNode Addqueryable(EnumerationType2 newValue) { if( newValue.IsNull() == false ) return AppendDomChild(NodeType.Attribute, "", "queryable", newValue.ToString()); return null; }