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