Table of Contents

Class EmailRule

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

The class EmailRule represents Rule based on is email valid checking.

[AddInName("Is valid email")]
[AddInUseParameters(false)]
[AddInOrder(10)]
public class EmailRule : Rule
Inheritance
EmailRule
Inherited Members

Properties

Parameters

The rule parameters.

public override string Parameters { get; set; }

Property Value

string

Methods

Validates(string)

Validates value according the is email valid checking.

public override bool Validates(string value)

Parameters

value string

The value to validate.

Returns

bool
To top