9 references to GetCollectionKind
System.Xaml (9)
System\Xaml\XamlType.cs (9)
173
public bool IsArray { get { return
GetCollectionKind
() == XamlCollectionKind.Array; } }
174
public bool IsCollection { get { return
GetCollectionKind
() == XamlCollectionKind.Collection; } }
176
public bool IsDictionary { get { return
GetCollectionKind
() == XamlCollectionKind.Dictionary; } }
209
if (
GetCollectionKind
() == XamlCollectionKind.None)
226
XamlCollectionKind collectionKind =
GetCollectionKind
();
478
XamlCollectionKind collectionKind =
GetCollectionKind
();
548
XamlCollectionKind collectionKind =
GetCollectionKind
();
559
if (
GetCollectionKind
() == XamlCollectionKind.None || UnderlyingType is null)
721
return (BaseType is not null) ? BaseType.
GetCollectionKind
() : XamlCollectionKind.None;