18 references to ItemType
System.Xaml (18)
System\Xaml\InfosetObjects\XamlObjectWriter.cs (4)
1709
ctx.CurrentType = ctx.ParentType.
ItemType
;
1780
currentType = value == null ? collectionType.
ItemType
: GetXamlType(value.GetType());
1811
XamlType itemType = ctx.ParentType.
ItemType
;
2576
XamlType itemType = pendingAdd.ItemType ?? instanceType.
ItemType
;
System\Xaml\Parser\XamlPullParser.cs (1)
990
XamlTypeName typeName = new XamlTypeName(propertyType.
ItemType
);
System\Xaml\Runtime\ClrObjectRuntime.cs (1)
375
Type itemType = dictionaryType.
ItemType
.UnderlyingType;
System\Xaml\Schema\XamlTypeInvoker.cs (6)
87
itemType = _xamlType.
ItemType
;
119
itemType = _xamlType.
ItemType
;
146
if (IsUnknown || _xamlType.
ItemType
== null)
152
if (contentType == _xamlType.
ItemType
||
153
(_xamlType.AllowedContentTypes.Count == 1 && contentType.CanAssignTo(_xamlType.
ItemType
)))
169
addMethods.Add(_xamlType.
ItemType
, _xamlType.AddMethod);
System\Xaml\XamlObjectReader.cs (1)
1807
var elementType = type.
ItemType
;
System\Xaml\XamlType.cs (5)
493
if (
ItemType
== null || UnderlyingType == null)
501
if (UnderlyingType != null &&
ItemType
.UnderlyingType != null)
504
GetIsReadOnlyMethod(UnderlyingType,
ItemType
.UnderlyingType);
688
result.Add(
ItemType
);
958
return BaseType.
ItemType
;