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