ModelBuilder.DefaultBuildLog.PopulatingInstance C# (CSharp) Method

PopulatingInstance() public method

The parameter is null.
public PopulatingInstance ( object instance ) : void
instance object
return void
        public void PopulatingInstance(object instance)
        {
            if (instance == null)
            {
                throw new ArgumentNullException(nameof(instance));
            }

            WriteMessage(Resources.DefaultBuildLog_PopulatingInstance, instance.GetType().FullName);

            _indent++;
        }