3 references to XamlDeferLoadAttribute
System.Xaml.Tests (3)
System\Windows\Markup\XamlDeferLoadAttributeTests.cs (3)
41var attribute = new XamlDeferLoadAttribute(loaderType, contentType); 51Assert.Throws<ArgumentNullException>("loaderType", () => new XamlDeferLoadAttribute(null!, "contentType")); 57Assert.Throws<ArgumentNullException>("contentType", () => new XamlDeferLoadAttribute("loaderType", null!));