4 references to 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!));