1 write to TypeArguments
Microsoft.Maui.Controls.SourceGen (1)
src\Controls\src\Xaml\XamlNode.cs (1)
51
TypeArguments
= typeArguments;
9 references to TypeArguments
Microsoft.Maui.Controls.SourceGen (9)
CodeBehindGenerator.cs (2)
513
if (xmlType.
TypeArguments
!= null)
515
returnType = $"{returnType}<{string.Join(", ", xmlType.
TypeArguments
.Select(typeArg => GetTypeName(typeArg, compilation, xmlnsCache, typeCache)))}>";
src\Controls\src\Xaml\XamlNode.cs (6)
68
(
TypeArguments
== null && other.
TypeArguments
== null ||
69
TypeArguments
!= null && other.
TypeArguments
!= null &&
TypeArguments
.SequenceEqual(other.
TypeArguments
));
src\Controls\src\Xaml\XmlTypeXamlExtensions.cs (1)
47
var typeArguments = xmlType.
TypeArguments
;