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