ModelBuilder.ArrayTypeCreator.CanCreate C# (CSharp) 메소드

CanCreate() 공개 메소드

The parameter is null.
public CanCreate ( Type type, string referenceName, LinkedList buildChain ) : bool
type System.Type
referenceName string
buildChain LinkedList
리턴 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);
        }