4 instantiations of XmlnsCompatibleWithAttribute
PresentationFramework (1)
OtherAssemblyAttrs.cs (1)
113
[assembly: System.Windows.Markup.
XmlnsCompatibleWith
("http://schemas.microsoft.com/xps/2005/06/resourcedictionary-key", "http://schemas.microsoft.com/winfx/2006/xaml")]
System.Xaml.Tests (3)
System\Windows\Markup\XmlnsCompatibleWithAttributeTests.cs (3)
16
var attribute = new
XmlnsCompatibleWithAttribute
(oldNamespace, newNamespace);
24
Assert.Throws<ArgumentNullException>("oldNamespace", () => new
XmlnsCompatibleWithAttribute
(null!, "newNamespace"));
30
Assert.Throws<ArgumentNullException>("newNamespace", () => new
XmlnsCompatibleWithAttribute
("oldNamespace", null!));
8 references to XmlnsCompatibleWithAttribute
PresentationFramework (3)
System\Windows\Markup\XmlnsCache.cs (3)
295
XmlnsCompatibleWithAttribute
xmlnsCompat = (
XmlnsCompatibleWithAttribute
)attr;
385
typeof(
XmlnsCompatibleWithAttribute
));
System.Xaml (4)
System\Xaml\MS\Impl\XmlNsInfo.cs (4)
303
if (LooseTypeExtensions.AssemblyQualifiedNameEquals(cad.Constructor.DeclaringType, typeof(
XmlnsCompatibleWithAttribute
)))
313
Attribute[] attributes = Attribute.GetCustomAttributes(assembly, typeof(
XmlnsCompatibleWithAttribute
));
317
XmlnsCompatibleWithAttribute
xmlnsCompatAttr = (
XmlnsCompatibleWithAttribute
)attr;
System.Xaml.Tests (1)
System\Windows\Markup\XmlnsCompatibleWithAttributeTests.cs (1)
16
var
attribute = new XmlnsCompatibleWithAttribute(oldNamespace, newNamespace);