Example #1
0
 public DataElementAttribute(string elementName, DataElementTypes elementTypes)
 {
     this.elementName  = elementName;
     this.elementTypes = elementTypes;
 }
Example #2
0
 public DataElementChildSupportedAttribute(DataElementTypes type)
 {
 }
Example #3
0
 public DataElementAttribute(string elementName)
 {
     this.elementName  = elementName;
     this.elementTypes = DataElementTypes.All;
 }