1 instantiation of AttributeData
XamlBuildTask (1)
Microsoft\Build\Tasks\Xaml\AttributeData.cs (1)
60attributeData = new AttributeData { Type = reader.Type };
21 references to AttributeData
XamlBuildTask (21)
Microsoft\Build\Tasks\Xaml\AttributeData.cs (2)
54internal static AttributeData LoadAttributeData(XamlReader reader, NamespaceTable namespaceTable, string rootNamespace) 56AttributeData attributeData = null;
Microsoft\Build\Tasks\Xaml\AttributeParameterData.cs (3)
41this.Value = AttributeData.GetParameterValue(ref textValue, type); 75this.TextValue = AttributeData.GetParameterText(value, type); 153if (!AttributeData.IsSupportedParameterType(type.UnderlyingType))
Microsoft\Build\Tasks\Xaml\ClassData.cs (3)
24List<AttributeData> attributes; 68public IList<AttributeData> Attributes 74attributes = new List<AttributeData>();
Microsoft\Build\Tasks\Xaml\ClassGenerator.cs (3)
205CodeAttributeDeclarationCollection GetAttributeDeclarations(IList<AttributeData> attributes, ClassData classData) 208foreach (AttributeData attrib in attributes) 236CodeExpression GetCodeExpressionForAttributeArgument(AttributeData attrib, AttributeParameterData paramInfo, ClassData classData)
Microsoft\Build\Tasks\Xaml\ClassImporter.cs (7)
372foreach (AttributeData attribute in ReadAttributesCollection(reader.ReadSubtree())) 391private IList<AttributeData> ReadAttributesCollection(XamlReader reader) 393IList<AttributeData> attributes = new List<AttributeData>(); 401AttributeData attribute = null; 404attribute = AttributeData.LoadAttributeData(reader.ReadSubtree(), this.namespaceTable, this.rootNamespace); 467foreach (AttributeData attribute in ReadAttributesCollection(xamlReader.ReadSubtree()))
Microsoft\Build\Tasks\Xaml\PropertyData.cs (3)
16List<AttributeData> attributes; 23public IList<AttributeData> Attributes 29this.attributes = new List<AttributeData>();