ServiceStack.Host.MetadataTypeExtensions.IsCollection C# (CSharp) Method

IsCollection() public static method

public static IsCollection ( this prop ) : bool
prop this
return bool
        public static bool IsCollection(this MetadataPropertyType prop) => 
            CollectionTypes.Contains(prop.Type) || IsArray(prop);