13 references to XamlDeferLoadAttribute
System.Xaml.Tests (13)
System\Windows\Markup\XamlDeferLoadAttributeTests.cs (3)
40
var attribute = new
XamlDeferLoadAttribute
(loaderType, contentType);
50
Assert.Throws<ArgumentNullException>("loaderType", () => new
XamlDeferLoadAttribute
(null!, "contentType"));
56
Assert.Throws<ArgumentNullException>("contentType", () => new
XamlDeferLoadAttribute
("loaderType", null!));
System\Xaml\XamlMemberTests.cs (5)
544
[
XamlDeferLoad
("System.Int32", "System.String")]
553
[
XamlDeferLoad
(null!, "System.String")]
556
[
XamlDeferLoad
("System.Int32", null!)]
559
[
XamlDeferLoad
("NoSuchType", "System.String")]
562
[
XamlDeferLoad
("System.Int32", "NoSuchType")]
System\Xaml\XamlTypeTests.cs (5)
2503
[
XamlDeferLoad
("System.Int32", "System.String")]
2518
[
XamlDeferLoad
(null!, "System.String")]
2523
[
XamlDeferLoad
("System.Int32", null!)]
2528
[
XamlDeferLoad
("NoSuchType", "System.String")]
2533
[
XamlDeferLoad
("System.Int32", "NoSuchType")]