ModelBuilder.DefaultBuildLog.PopulatedInstance C# (CSharp) Method

PopulatedInstance() public method

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

            _indent--;

            WriteMessage(Resources.DefaultBuildLog_PopulatedInstance, instance.GetType().FullName);
        }