Click or drag to resize

PropertyInvalidExceptionValidateGreaterThanZero Method (Double, String, String)

Validate that the given property value must be greater than zero, and throw PropertyInvalidException if it is not.

Namespace:  AGI.Foundation
Assembly:  AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.1.418.0 (24.1.418.0)
Syntax
public static void ValidateGreaterThanZero(
	double value,
	string propertyName,
	string exceptionMessage
)

Parameters

value
Type: SystemDouble
The property value.
propertyName
Type: SystemString
The name of the property.
exceptionMessage
Type: SystemString
The message to use when throwing the exception.
Exceptions
ExceptionCondition
PropertyInvalidException Thrown if value is less than or equal to zero.
See Also