8 instantiations of XmlLangPropertyAttribute
PresentationFramework (3)
System\Windows\FrameworkContentElement.cs (1)
41
[
XmlLangProperty
("Language")]
System\Windows\FrameworkElement.cs (1)
92
[
XmlLangProperty
("Language")]
System\Windows\Markup\Baml2006\WpfKnownType.cs (1)
402
result = (_xmlLangPropertyName == null) ? null : new
XmlLangPropertyAttribute
(_xmlLangPropertyName);
System.Xaml.Tests (5)
System\Windows\Markup\XmlLangPropertyAttributeTests.cs (1)
16
var attribute = new
XmlLangPropertyAttribute
(name);
System\Xaml\XamlTypeTests.cs (4)
535
GetCustomAttributesAction = (attributeType, inherit) => new object[] { new
XmlLangPropertyAttribute
("name") }
579
GetCustomAttributesAction = (attributeType, inherit) => new object[] { new
XmlLangPropertyAttribute
("name") }
711
[
XmlLangPropertyAttribute
("langName")]
719
[
XmlLangPropertyAttribute
(null!)]
15 references to XmlLangPropertyAttribute
PresentationFramework (10)
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
849
case 755: t = () => typeof(
XmlLangPropertyAttribute
); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
12757
typeof(System.Windows.Markup.
XmlLangPropertyAttribute
),
System\Windows\Markup\Baml2006\WpfKnownType.cs (1)
400
else if (attributeType == typeof(
XmlLangPropertyAttribute
))
System\Windows\Markup\KnownTypes.cs (1)
6303
case KnownElements.XmlLangPropertyAttribute: t = typeof(System.Windows.Markup.
XmlLangPropertyAttribute
); break;
System\Windows\Markup\Primitives\MarkupWriter.cs (3)
481
XmlLangPropertyAttribute
xlpa = item.Attributes[typeof(
XmlLangPropertyAttribute
)] as
XmlLangPropertyAttribute
;
System\Windows\Markup\XamlTypeMapper.cs (3)
1834
XmlLangPropertyAttribute
xlpa = attributes[typeof(
XmlLangPropertyAttribute
)] as
XmlLangPropertyAttribute
;
System.Xaml (3)
System\Xaml\Schema\Reflector.cs (2)
106
if (attributeType == typeof(
XmlLangPropertyAttribute
))
108
return ((
XmlLangPropertyAttribute
)attributes[0]).Name;
System\Xaml\XamlType.cs (1)
700
attributeType = typeof(
XmlLangPropertyAttribute
);
System.Xaml.Tests (2)
System\Windows\Markup\XmlLangPropertyAttributeTests.cs (1)
16
var
attribute = new XmlLangPropertyAttribute(name);
System\Xaml\XamlTypeTests.cs (1)
695
ConstructorResult = typeof(
XmlLangPropertyAttribute
).GetConstructors()[0],