9 references to GetCollectionKind
System.Xaml (9)
System\Xaml\XamlType.cs (9)
178
public bool IsArray { get { return
GetCollectionKind
() == XamlCollectionKind.Array; } }
179
public bool IsCollection { get { return
GetCollectionKind
() == XamlCollectionKind.Collection; } }
181
public bool IsDictionary { get { return
GetCollectionKind
() == XamlCollectionKind.Dictionary; } }
216
if (
GetCollectionKind
() == XamlCollectionKind.None)
235
XamlCollectionKind collectionKind =
GetCollectionKind
();
507
XamlCollectionKind collectionKind =
GetCollectionKind
();
581
XamlCollectionKind collectionKind =
GetCollectionKind
();
593
if (
GetCollectionKind
() == XamlCollectionKind.None || UnderlyingType is null)
768
return (BaseType is not null) ? BaseType.
GetCollectionKind
() : XamlCollectionKind.None;