17 references to TypeArguments
System.Xaml (17)
System\Xaml\Context\XamlContext.cs (1)
364
XamlType propertyType = GetXamlType(propNs, propTypeName, tagType.
TypeArguments
);
System\Xaml\XamlObjectReader.cs (2)
1168
FindNamespaceForTypeArguments(type.
TypeArguments
, context);
1188
FindNamespaceForTypeArguments(type.
TypeArguments
, context);
System\Xaml\XamlType.cs (4)
181
public bool IsGeneric { get { return
TypeArguments
is not null; } }
1472
for (int i = 0; i <
TypeArguments
.Count; i++)
1474
TypeArguments
[i].AppendTypeName(sb, forceNsInitialization);
1475
if (i <
TypeArguments
.Count - 1)
System\Xaml\XamlTypeName.cs (2)
44
if (xamlType.
TypeArguments
is not null)
46
foreach (XamlType argumentType in xamlType.
TypeArguments
)
System\Xaml\XamlXmlWriter.cs (8)
171
if (type.
TypeArguments
is not null)
549
WriteValue(BuildTypeArgumentsString(type.
TypeArguments
));
571
if (type.
TypeArguments
is not null)
573
foreach (XamlType arg in type.
TypeArguments
)
593
if (type.
TypeArguments
is not null)
595
foreach (XamlType arg in type.
TypeArguments
)
640
if (type.
TypeArguments
is not null)
644
foreach (XamlType arg in type.
TypeArguments
)