Table of Contents

Class GreaterThanAttribute

Namespace
Acuit.Pinpoint.Common.Validation
Assembly
Acuit.Pinpoint.Common.dll

Used for specifying a greater-than validation constraint.

[AttributeUsage(AttributeTargets.Property|AttributeTargets.Field|AttributeTargets.Parameter, AllowMultiple = false)]
public sealed class GreaterThanAttribute : CompareToAttribute, _Attribute
Inheritance
GreaterThanAttribute
Implements
Inherited Members

Constructors

GreaterThanAttribute(double)

Constructor that takes a double comparison value.

public GreaterThanAttribute(double comparisonValue)

Parameters

comparisonValue double

The comparison value.

GreaterThanAttribute(int)

Constructor that takes an integer comparison value.

public GreaterThanAttribute(int comparisonValue)

Parameters

comparisonValue int

The comparison value.

GreaterThanAttribute(Type, string)

Allows for specifying a comparison for arbitrary types. The value string will be converted to the target type.

public GreaterThanAttribute(Type operandType, string comparisonValue)

Parameters

operandType Type

The type of the range parameters. Must implement IComparable.

comparisonValue string

The comparison value.