Ejemplo n.º 1
0
 public ElementDefinition(XName elementName, Type targetType, ConstructorParameter[] constructorParameters,
                          ElementAttribute[] attributes, ChildElementDefinition[] children, CacheElementValueInstruction cacheInstruction)
 {
     ElementName                  = elementName;
     TargetType                   = targetType;
     ConstructorParameters        = constructorParameters;
     Attributes                   = attributes;
     ChildElements                = children;
     CacheElementValueInstruction = cacheInstruction;
 }
Ejemplo n.º 2
0
 public ElementDefinition(XName elementName, Type targetType, ElementAttribute[] attributes, ChildElementDefinition[] children,
                          CacheElementValueInstruction cacheInstruction)
     : this(elementName, targetType, null, attributes, children, cacheInstruction)
 {
 }