7 instantiations of XamlDeferLoadAttribute
PresentationFramework (1)
System\Windows\TemplateContent.cs (1)
24[XamlDeferLoad(typeof(TemplateContentLoader), typeof(FrameworkElement))]
System.Xaml.Tests (6)
System\Windows\Markup\XamlDeferLoadAttributeTests.cs (6)
16var attribute = new XamlDeferLoadAttribute(loaderType, contentType); 26Assert.Throws<ArgumentNullException>("loaderType", () => new XamlDeferLoadAttribute(null!, typeof(int))); 32Assert.Throws<ArgumentNullException>("contentType", () => new XamlDeferLoadAttribute(typeof(int), null!)); 40var attribute = new XamlDeferLoadAttribute(loaderType, contentType); 50Assert.Throws<ArgumentNullException>("loaderType", () => new XamlDeferLoadAttribute(null!, "contentType")); 56Assert.Throws<ArgumentNullException>("contentType", () => new XamlDeferLoadAttribute("loaderType", null!));
7 references to XamlDeferLoadAttribute
System.Xaml (5)
System\Xaml\Schema\Reflector.cs (3)
250Debug.Assert(attributeType == typeof(XamlDeferLoadAttribute)); 252XamlDeferLoadAttribute tca = (XamlDeferLoadAttribute)attributes[0];
System\Xaml\XamlMember.cs (1)
527Type[] loaderTypes = _reflector.GetAttributeTypes(typeof(XamlDeferLoadAttribute), 2);
System\Xaml\XamlType.cs (1)
810Type[] loaderTypes = _reflector.GetAttributeTypes(typeof(XamlDeferLoadAttribute), 2);
System.Xaml.Tests (2)
System\Windows\Markup\XamlDeferLoadAttributeTests.cs (2)
16var attribute = new XamlDeferLoadAttribute(loaderType, contentType); 40var attribute = new XamlDeferLoadAttribute(loaderType, contentType);