Interface IGetsManifestFromBuilder
A service which gets a ValidationManifest from an object that implements IBuildsValidator<TValidated>.
Namespace: CSF.Validation.Manifest
Assembly: CSF.Validation.Abstractions.dll
Syntax
public interface IGetsManifestFromBuilder
Methods
| Improve this Doc View SourceGetManifest<TValidated>(IBuildsValidator<TValidated>)
Gets a validation manifest from the validator-builder.
Declaration
ValidationManifest GetManifest<TValidated>(IBuildsValidator<TValidated> builder)
Parameters
| Type | Name | Description |
|---|---|---|
| IBuildsValidator<TValidated> | builder | The validation builder instance. |
Returns
| Type | Description |
|---|---|
| ValidationManifest | A validation manifest, created using the validation-builder. |
Type Parameters
| Name | Description |
|---|---|
| TValidated | The validated object type. |
Exceptions
| Type | Condition |
|---|---|
| System.ArgumentNullException | If |