Beispiel #1
0
 public AttributeInfo(string name, string value, AttributeOrderRule orderRule, MarkupExtension markupExtension)
 {
     this.Name            = name;
     this.Value           = value;
     this.OrderRule       = orderRule;
     this.MarkupExtension = markupExtension;
 }
Beispiel #2
0
 public AttributeInfo(string name, string value, bool attributeHasIgnoredNamespace, string attributeNameWithoutNamespace, AttributeOrderRule orderRule, MarkupExtension markupExtension)
 {
     this.Name  = name;
     this.Value = value;
     this.AttributeHasIgnoredNamespace  = attributeHasIgnoredNamespace;
     this.AttributeNameWithoutNamespace = attributeNameWithoutNamespace;
     this.OrderRule       = orderRule;
     this.MarkupExtension = markupExtension;
 }