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)
16var attribute = new XmlnsCompatibleWithAttribute(oldNamespace, newNamespace); 24Assert.Throws<ArgumentNullException>("oldNamespace", () => new XmlnsCompatibleWithAttribute(null!, "newNamespace")); 30Assert.Throws<ArgumentNullException>("newNamespace", () => new XmlnsCompatibleWithAttribute("oldNamespace", null!));
8 references to XmlnsCompatibleWithAttribute
PresentationFramework (3)
System\Windows\Markup\XmlnsCache.cs (3)
295XmlnsCompatibleWithAttribute xmlnsCompat = (XmlnsCompatibleWithAttribute)attr; 385typeof(XmlnsCompatibleWithAttribute));
System.Xaml (4)
System\Xaml\MS\Impl\XmlNsInfo.cs (4)
303if (LooseTypeExtensions.AssemblyQualifiedNameEquals(cad.Constructor.DeclaringType, typeof(XmlnsCompatibleWithAttribute))) 313Attribute[] attributes = Attribute.GetCustomAttributes(assembly, typeof(XmlnsCompatibleWithAttribute)); 317XmlnsCompatibleWithAttribute xmlnsCompatAttr = (XmlnsCompatibleWithAttribute)attr;
System.Xaml.Tests (1)
System\Windows\Markup\XmlnsCompatibleWithAttributeTests.cs (1)
16var attribute = new XmlnsCompatibleWithAttribute(oldNamespace, newNamespace);