17 references to TypeArguments
System.Xaml (17)
System\Xaml\Context\XamlContext.cs (1)
351XamlType propertyType = GetXamlType(propNs, propTypeName, tagType.TypeArguments);
System\Xaml\XamlObjectReader.cs (2)
1171FindNamespaceForTypeArguments(type.TypeArguments, context); 1191FindNamespaceForTypeArguments(type.TypeArguments, context);
System\Xaml\XamlType.cs (4)
180public bool IsGeneric { get { return TypeArguments != null; } } 1373for (int i = 0; i < TypeArguments.Count; i++) 1375TypeArguments[i].AppendTypeName(sb, forceNsInitialization); 1376if (i < TypeArguments.Count - 1)
System\Xaml\XamlTypeName.cs (2)
47if (xamlType.TypeArguments != null) 49foreach (XamlType argumentType in xamlType.TypeArguments)
System\Xaml\XamlXmlWriter.cs (8)
174if (type.TypeArguments != null) 544WriteValue(BuildTypeArgumentsString(type.TypeArguments)); 566if (type.TypeArguments != null) 568foreach (XamlType arg in type.TypeArguments) 588if (type.TypeArguments != null) 590foreach (XamlType arg in type.TypeArguments) 636if (type.TypeArguments != null) 640foreach (XamlType arg in type.TypeArguments)