Table of Contents

Class IntegerRule

Namespace
Dynamicweb.Ecommerce.Orders.Validation.Rules
Assembly
Dynamicweb.Ecommerce.dll

The class IntegerRule represents Rule based on is integer checking.

[AddInName("Is integer")]
[AddInUseParameters(false)]
[AddInOrder(4)]
public class IntegerRule : Rule
Inheritance
IntegerRule
Inherited Members

Properties

Parameters

The rule parameters.

public override string Parameters { get; set; }

Property Value

string

Methods

Validates(string)

Validates value according the "is integer" checking.

public override bool Validates(string value)

Parameters

value string

The value to validate.

Returns

bool
To top