17 references to TypeArguments
System.Xaml (17)
System\Xaml\Context\XamlContext.cs (1)
348
XamlType propertyType = GetXamlType(propNs, propTypeName, tagType.
TypeArguments
);
System\Xaml\XamlObjectReader.cs (2)
1166
FindNamespaceForTypeArguments(type.
TypeArguments
, context);
1186
FindNamespaceForTypeArguments(type.
TypeArguments
, context);
System\Xaml\XamlType.cs (4)
177
public bool IsGeneric { get { return
TypeArguments
is not null; } }
1370
for (int i = 0; i <
TypeArguments
.Count; i++)
1372
TypeArguments
[i].AppendTypeName(sb, forceNsInitialization);
1373
if (i <
TypeArguments
.Count - 1)
System\Xaml\XamlTypeName.cs (2)
45
if (xamlType.
TypeArguments
is not null)
47
foreach (XamlType argumentType in xamlType.
TypeArguments
)
System\Xaml\XamlXmlWriter.cs (8)
172
if (type.
TypeArguments
is not null)
542
WriteValue(BuildTypeArgumentsString(type.
TypeArguments
));
564
if (type.
TypeArguments
is not null)
566
foreach (XamlType arg in type.
TypeArguments
)
586
if (type.
TypeArguments
is not null)
588
foreach (XamlType arg in type.
TypeArguments
)
634
if (type.
TypeArguments
is not null)
638
foreach (XamlType arg in type.
TypeArguments
)