9 references to GetCollectionKind
System.Xaml (9)
System\Xaml\XamlType.cs (9)
177
public bool IsArray { get { return
GetCollectionKind
() == XamlCollectionKind.Array; } }
178
public bool IsCollection { get { return
GetCollectionKind
() == XamlCollectionKind.Collection; } }
180
public bool IsDictionary { get { return
GetCollectionKind
() == XamlCollectionKind.Dictionary; } }
215
if (
GetCollectionKind
() == XamlCollectionKind.None)
234
XamlCollectionKind collectionKind =
GetCollectionKind
();
506
XamlCollectionKind collectionKind =
GetCollectionKind
();
580
XamlCollectionKind collectionKind =
GetCollectionKind
();
592
if (
GetCollectionKind
() == XamlCollectionKind.None || UnderlyingType is null)
767
return (BaseType is not null) ? BaseType.
GetCollectionKind
() : XamlCollectionKind.None;