ModelBuilder.NumericValueGenerator.GetMaximum C# (CSharp) Method

GetMaximum() protected method

Returns the maximum value for the specified generation target.
protected GetMaximum ( Type type, string referenceName, object context ) : object
type System.Type The type of value to generate.
referenceName string Identifies the possible parameter or property name the value is intended for.
context object The possible context object the value is being created for.
return object
        protected virtual object GetMaximum(Type type, string referenceName, object context)
        {
            return Generator.GetMax(type);
        }