6 references to ConstructionRequiresArguments
System.Xaml (5)
System\Xaml\Parser\XamlPullParser.cs (1)
285bool isConstructable = currentType.IsConstructible && !currentType.ConstructionRequiresArguments;
System\Xaml\XamlObjectReader.cs (1)
1428return type.IsConstructible && !type.ConstructionRequiresArguments;
System\Xaml\XamlType.cs (1)
902if (!ConstructionRequiresArguments)
System\Xaml\XamlXmlWriter.cs (2)
1078if (containingType is not null && containingType.ConstructionRequiresArguments) 1187if (containingType is not null && containingType.ConstructionRequiresArguments)
System.Xaml.Tests (1)
System\Xaml\XamlTypeTests.cs (1)
1936Assert.Equal(expected, type.ConstructionRequiresArguments);