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