Table of Contents

Interface IExpressValidatorBuilder<TObj, TOptions>

Namespace
ExpressValidator
Assembly
ExpressValidator.dll

Represents the interface for a builder that uses TOptions to create an instance of an object that implements IExpressValidator<TObj>.

public interface IExpressValidatorBuilder<TObj, TOptions>

Type Parameters

TObj

A type of object to validate.

TOptions

A type of and options for use when creating an object that implements the IExpressValidator<TObj>.

Extension Methods

Methods

Build(TOptions)

Creates an instance of an object that implements the IExpressValidator<TObj>.

IExpressValidator<TObj> Build(TOptions options)

Parameters

options TOptions

Options for use by ExpressValidatorBuilder<TObj, TOptions> to build a validator.

Returns

IExpressValidator<TObj>

IExpressValidator<TObj>.