4 instantiations of XmlnsCompatibleWithAttribute
PresentationFramework (1)
OtherAssemblyAttrs.cs (1)
108[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)
15var attribute = new XmlnsCompatibleWithAttribute(oldNamespace, newNamespace); 23Assert.Throws<ArgumentNullException>("oldNamespace", () => new XmlnsCompatibleWithAttribute(null!, "newNamespace")); 29Assert.Throws<ArgumentNullException>("newNamespace", () => new XmlnsCompatibleWithAttribute("oldNamespace", null!));
8 references to XmlnsCompatibleWithAttribute
PresentationFramework (3)
System\Windows\Markup\XmlnsCache.cs (3)
289XmlnsCompatibleWithAttribute xmlnsCompat = (XmlnsCompatibleWithAttribute)attr; 379typeof(XmlnsCompatibleWithAttribute));
System.Xaml (4)
System\Xaml\MS\Impl\XmlNsInfo.cs (4)
301if (LooseTypeExtensions.AssemblyQualifiedNameEquals(cad.Constructor.DeclaringType, typeof(XmlnsCompatibleWithAttribute))) 311Attribute[] attributes = Attribute.GetCustomAttributes(assembly, typeof(XmlnsCompatibleWithAttribute)); 315XmlnsCompatibleWithAttribute xmlnsCompatAttr = (XmlnsCompatibleWithAttribute)attr;
System.Xaml.Tests (1)
System\Windows\Markup\XmlnsCompatibleWithAttributeTests.cs (1)
15var attribute = new XmlnsCompatibleWithAttribute(oldNamespace, newNamespace);