ModelBuilder.DefaultBuildLog.CreatingValue C# (CSharp) Method

CreatingValue() public method

The parameter is null.
public CreatingValue ( Type type, object context ) : void
type System.Type
context object
return void
        public void CreatingValue(Type type, object context)
        {
            if (type == null)
            {
                throw new ArgumentNullException(nameof(type));
            }

            WriteMessage(Resources.DefaultBuildLog_CreatingValue, type.FullName);
        }