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; }
public ElementDefinition(XName elementName, Type targetType, ElementAttribute[] attributes, ChildElementDefinition[] children, CacheElementValueInstruction cacheInstruction) : this(elementName, targetType, null, attributes, children, cacheInstruction) { }