7 instantiations of XamlDeferLoadAttribute
PresentationFramework (1)
System\Windows\TemplateContent.cs (1)
27[XamlDeferLoad(typeof(TemplateContentLoader), typeof(FrameworkElement))]
System.Xaml.Tests (6)
System\Windows\Markup\XamlDeferLoadAttributeTests.cs (6)
17var attribute = new XamlDeferLoadAttribute(loaderType, contentType); 27Assert.Throws<ArgumentNullException>("loaderType", () => new XamlDeferLoadAttribute(null!, typeof(int))); 33Assert.Throws<ArgumentNullException>("contentType", () => new XamlDeferLoadAttribute(typeof(int), null!)); 41var attribute = new XamlDeferLoadAttribute(loaderType, contentType); 51Assert.Throws<ArgumentNullException>("loaderType", () => new XamlDeferLoadAttribute(null!, "contentType")); 57Assert.Throws<ArgumentNullException>("contentType", () => new XamlDeferLoadAttribute("loaderType", null!));
7 references to XamlDeferLoadAttribute
System.Xaml (5)
System\Xaml\Schema\Reflector.cs (3)
252Debug.Assert(attributeType == typeof(XamlDeferLoadAttribute)); 254XamlDeferLoadAttribute tca = (XamlDeferLoadAttribute)attributes[0];
System\Xaml\XamlMember.cs (1)
530Type[] loaderTypes = _reflector.GetAttributeTypes(typeof(XamlDeferLoadAttribute), 2);
System\Xaml\XamlType.cs (1)
813Type[] loaderTypes = _reflector.GetAttributeTypes(typeof(XamlDeferLoadAttribute), 2);
System.Xaml.Tests (2)
System\Windows\Markup\XamlDeferLoadAttributeTests.cs (2)
17var attribute = new XamlDeferLoadAttribute(loaderType, contentType); 41var attribute = new XamlDeferLoadAttribute(loaderType, contentType);