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