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