9 references to AllowedContentTypes
System.Xaml (3)
System\Xaml\Parser\XamlPullParser.cs (1)
1235foreach (XamlType allowedType in propertyType.AllowedContentTypes)
System\Xaml\Schema\XamlTypeInvoker.cs (2)
151(_xamlType.AllowedContentTypes.Count == 1 && contentType.CanAssignTo(_xamlType.ItemType))) 168foreach (XamlType type in _xamlType.AllowedContentTypes)
System.Xaml.Tests (6)
System\Xaml\XamlTypeTests.cs (6)
1430Assert.Equal((type.IsCollection || type.IsDictionary) ? expected ?? Array.Empty<XamlType>() : null, type.AllowedContentTypes); 1438Assert.Throws<ArgumentNullException>("type", () => type.AllowedContentTypes); 1452Assert.Throws<NullReferenceException>(() => type.AllowedContentTypes); 1466Assert.Throws<NullReferenceException>(() => type.AllowedContentTypes); 1480Assert.Throws<InvalidCastException>(() => type.AllowedContentTypes); 1514Assert.Throws<XamlSchemaException>(() => type.AllowedContentTypes);