public void InsertSupportSLDAt(EnumerationType6 newValue, int index)
 {
     if (newValue.IsNull() == false)
     {
         InsertDomChildAt(NodeType.Attribute, "", "SupportSLD", index, newValue.ToString());
     }
 }
 public XmlNode AddSupportSLD(EnumerationType6 newValue)
 {
     if (newValue.IsNull() == false)
     {
         return(AppendDomChild(NodeType.Attribute, "", "SupportSLD", newValue.ToString()));
     }
     return(null);
 }
 public void ReplaceSupportSLDAt(EnumerationType6 newValue, int index)
 {
     ReplaceDomChildAt(NodeType.Attribute, "", "SupportSLD", index, newValue.ToString());
 }
 public void InsertSupportSLDAt(EnumerationType6 newValue, int index)
 {
     if( newValue.IsNull() == false )
         InsertDomChildAt(NodeType.Attribute, "", "SupportSLD", index, newValue.ToString());
 }
 public XmlNode AddSupportSLD(EnumerationType6 newValue)
 {
     if( newValue.IsNull() == false )
         return AppendDomChild(NodeType.Attribute, "", "SupportSLD", newValue.ToString());
     return null;
 }
 public void ReplaceSupportSLDAt(EnumerationType6 newValue, int index)
 {
     ReplaceDomChildAt(NodeType.Attribute, "", "SupportSLD", index, newValue.ToString());
 }