26 references to XmlnsPrefix
PresentationCore (5)
OtherAssemblyAttrs.cs (5)
37[assembly: System.Windows.Markup.XmlnsPrefix("http://schemas.microsoft.com/winfx/2006/xaml/presentation", "av")] 42[assembly: System.Windows.Markup.XmlnsPrefix("http://schemas.microsoft.com/winfx/2006/xaml", "x")] 53[assembly: System.Windows.Markup.XmlnsPrefix("http://schemas.microsoft.com/xps/2005/06", "xps")] 65[assembly: System.Windows.Markup.XmlnsPrefix("http://schemas.microsoft.com/netfx/2007/xaml/presentation", "wpf")] 77[assembly: System.Windows.Markup.XmlnsPrefix("http://schemas.microsoft.com/netfx/2009/xaml/presentation", "wpf")]
PresentationFramework (5)
OtherAssemblyAttrs.cs (5)
67[assembly: System.Windows.Markup.XmlnsPrefix("http://schemas.microsoft.com/winfx/2006/xaml/presentation", "av")] 80[assembly: System.Windows.Markup.XmlnsPrefix("http://schemas.microsoft.com/netfx/2007/xaml/presentation", "wpf")] 92[assembly: System.Windows.Markup.XmlnsPrefix("http://schemas.microsoft.com/netfx/2009/xaml/presentation", "wpf")] 95[assembly: System.Windows.Markup.XmlnsPrefix("http://schemas.microsoft.com/winfx/2006/xaml", "x")] 106[assembly: System.Windows.Markup.XmlnsPrefix("http://schemas.microsoft.com/xps/2005/06", "metro")]
System.Xaml.Tests (16)
System\Windows\Markup\XmlnsPrefixAttributeTests.cs (3)
15var attribute = new XmlnsPrefixAttribute(xmlNamespace, prefix); 23Assert.Throws<ArgumentNullException>("xmlNamespace", () => new XmlnsPrefixAttribute(null!, "prefix")); 29Assert.Throws<ArgumentNullException>("prefix", () => new XmlnsPrefixAttribute("xmlNamespace", null!));
System\Xaml\XamlSchemaContextTests.cs (13)
148new XmlnsPrefixAttribute("namespace", "prefix"), 149new XmlnsPrefixAttribute("doubleNamespace1", "doublePrefix"), 150new XmlnsPrefixAttribute("doubleNamespace2", "doublePrefix"), 151new XmlnsPrefixAttribute("sameNamespace", "prefix1"), 152new XmlnsPrefixAttribute("sameNamespace", "prefix2"), 153new XmlnsPrefixAttribute("longerAssemblyNamespace", "longerAssemblyPrefix"), 154new XmlnsPrefixAttribute("shorterAssemblyNamespace", "shorterAssemblyPrefix"), 155new XmlnsPrefixAttribute("greaterAssemblyNamespace", "greaterAssemblyPrefix2"), 156new XmlnsPrefixAttribute("lesserAssemblyNamespace", "lesserAssemblyPrefix1") 169new XmlnsPrefixAttribute("longerAssemblyNamespace", "longerAssemblyPrefix2"), 170new XmlnsPrefixAttribute("shorterAssemblyNamespace", "shorterAssemblyPrefi"), 171new XmlnsPrefixAttribute("greaterAssemblyNamespace", "greaterAssemblyPrefix1"), 172new XmlnsPrefixAttribute("lesserAssemblyNamespace", "lesserAssemblyPrefix2"),