ModelBuilder.ArrayTypeCreator.CanCreate C# (CSharp) Method

CanCreate() public method

The parameter is null.
public CanCreate ( Type type, string referenceName, LinkedList buildChain ) : bool
type System.Type
referenceName string
buildChain LinkedList
return bool
        public override bool CanCreate(Type type, string referenceName, LinkedList<object> buildChain)
        {
            // Creating using this creator has the same rules for populate as it does for create
            return CanPopulate(type, referenceName, buildChain);
        }