PostSharpAPI ReferencePost­Sharp.​Patterns.​ContractsLess­Than­Attribute
Open sandboxFocus

LessThanAttribute Class

Custom attribute that, when added to a field, property or parameter, throws an ArgumentOutOfRangeException if the target is assigned a value that is greater than a given value.

Namespace: PostSharp.Patterns.Contracts
Assembly: PostSharp.Patterns.Common.dll
Syntax
public class LessThanAttribute : RangeAttribute, ILocationLevelAspect, IValidableAnnotation, IAspect
Remarks

Null values are accepted and do not throw an exception.

Error message is identified by LessThanErrorMessage.

Error message can use additional argument {4} to refer to the minimum value used.

Constructors

Name Description
LessThanAttribute(Double)

Initializes a new LessThanAttribute with a given floating-point bound.

LessThanAttribute(Int64)

Initializes a new LessThanAttribute with a given integer bound.

LessThanAttribute(UInt64)

Initializes a new LessThanAttribute with a given System.UInt64 bound.

Methods

Name Description
CreateException(Object, String, LocationKind, LocationValidationContext)
GetErrorMessage()

Gets unformatted error message as defined by the instance.

GetErrorMessageArguments()

Gets values of additional arguments for error message associated with particular instance of LocationContractAttribute. There arguments can be referenced from error message string by {4}, {5} and so on.