48 references to None
PresentationFramework (1)
System\Windows\Markup\Baml2006\WpfXamlType.cs (1)
508return XamlCollectionKind.None;
PresentationFramework.Aero (6)
src\Microsoft.DotNet.Wpf\src\Themes\Shared\Microsoft\Windows\Themes\KnownTypeHelper.cs (6)
113CollectionKind = XamlCollectionKind.None 130CollectionKind = XamlCollectionKind.None 170CollectionKind = XamlCollectionKind.None 184CollectionKind = XamlCollectionKind.None 206CollectionKind = XamlCollectionKind.None 226CollectionKind = XamlCollectionKind.None
PresentationFramework.Aero2 (6)
src\Microsoft.DotNet.Wpf\src\Themes\Shared\Microsoft\Windows\Themes\KnownTypeHelper.cs (6)
113CollectionKind = XamlCollectionKind.None 130CollectionKind = XamlCollectionKind.None 170CollectionKind = XamlCollectionKind.None 184CollectionKind = XamlCollectionKind.None 206CollectionKind = XamlCollectionKind.None 226CollectionKind = XamlCollectionKind.None
PresentationFramework.AeroLite (3)
src\Microsoft.DotNet.Wpf\src\Themes\Shared\Microsoft\Windows\Themes\KnownTypeHelper.cs (3)
170CollectionKind = XamlCollectionKind.None 184CollectionKind = XamlCollectionKind.None 226CollectionKind = XamlCollectionKind.None
PresentationFramework.Classic (3)
src\Microsoft.DotNet.Wpf\src\Themes\Shared\Microsoft\Windows\Themes\KnownTypeHelper.cs (3)
78CollectionKind = XamlCollectionKind.None 92CollectionKind = XamlCollectionKind.None 226CollectionKind = XamlCollectionKind.None
PresentationFramework.Luna (5)
src\Microsoft.DotNet.Wpf\src\Themes\Shared\Microsoft\Windows\Themes\KnownTypeHelper.cs (5)
113CollectionKind = XamlCollectionKind.None 130CollectionKind = XamlCollectionKind.None 170CollectionKind = XamlCollectionKind.None 184CollectionKind = XamlCollectionKind.None 226CollectionKind = XamlCollectionKind.None
PresentationFramework.Royale (5)
src\Microsoft.DotNet.Wpf\src\Themes\Shared\Microsoft\Windows\Themes\KnownTypeHelper.cs (5)
113CollectionKind = XamlCollectionKind.None 130CollectionKind = XamlCollectionKind.None 170CollectionKind = XamlCollectionKind.None 184CollectionKind = XamlCollectionKind.None 226CollectionKind = XamlCollectionKind.None
System.Xaml (6)
System\Xaml\Schema\CollectionReflector.cs (2)
45return XamlCollectionKind.None; 80return XamlCollectionKind.None;
System\Xaml\Schema\TypeReflector.cs (1)
84_collectionKind = XamlCollectionKind.None;
System\Xaml\XamlType.cs (3)
216if (GetCollectionKind() == XamlCollectionKind.None) 593if (GetCollectionKind() == XamlCollectionKind.None || UnderlyingType is null) 768return (BaseType is not null) ? BaseType.GetCollectionKind() : XamlCollectionKind.None;
System.Xaml.Tests (13)
System\Xaml\XamlTypeTests.cs (13)
1741yield return new object?[] { new SubXamlType("namespace", "name", null, new XamlSchemaContext()), XamlCollectionKind.None }; 1742yield return new object?[] { new SubXamlType("name", null, new XamlSchemaContext()), XamlCollectionKind.None }; 1743yield return new object?[] { new NoUnderlyingOrBaseType(), XamlCollectionKind.None }; 1745yield return new object?[] { new SubXamlType(typeof(int), new XamlSchemaContext()), XamlCollectionKind.None }; 1747yield return new object?[] { new SubXamlType(typeof(IEnumerable), new XamlSchemaContext()), XamlCollectionKind.None }; 1748yield return new object?[] { new SubXamlType(typeof(IEnumerable<int>), new XamlSchemaContext()), XamlCollectionKind.None }; 1749yield return new object?[] { new SubXamlType(typeof(ICollection), new XamlSchemaContext()), XamlCollectionKind.None }; 1758yield return new object?[] { new SubXamlType(typeof(InvalidReturnGetEnumeratorClass), new XamlSchemaContext()), XamlCollectionKind.None }; 1759yield return new object?[] { new SubXamlType(typeof(InvalidParametersGetEnumeratorClass), new XamlSchemaContext()), XamlCollectionKind.None }; 1764yield return new object?[] { new SubXamlType(typeof(PrivateICollectionImplementer), new XamlSchemaContext()), XamlCollectionKind.None }; 1765yield return new object?[] { new SubXamlType(typeof(ProtectedICollectionImplementer), new XamlSchemaContext()), XamlCollectionKind.None }; 1770yield return new object?[] { new SubXamlType(typeof(PrivateIDictionaryImplementer), new XamlSchemaContext()), XamlCollectionKind.None }; 1771yield return new object?[] { new SubXamlType(typeof(ProtectedIDictionaryImplementer), new XamlSchemaContext()), XamlCollectionKind.None };