Specification.

Email<T>(Expression<Func<T, string>>) Method

Summary

Creates EmailSpecification for candidate property:

Checks if string is valid email address.

Namespace
FluentSpecification
Containing Type
Specification

Syntax

[PublicAPI]
[NotNull]
public static IComplexSpecification<T> Email<T>(Expression<Func<T, string>> selector)

Attributes

Type Description
PublicAPI
NotNull

Type Parameters

Name Description
T Type of candidate.

Parameters

Name Type Description
selector Expression<Func<T, string>> Candidate property selector.

Return Value

Type Description
IComplexSpecification<T> New complex Specification.

Exceptions

Type Description
System.ArgumentNullException Thrown when selector is null.
System.ArgumentException Thrown when selector is not valid.
GitHub