Interface IMetadataValidationCheck
Provides methods used to check the quality and validity of metadata.
Namespace: Algenta.Colectica.Model.Utility
Assembly: Algenta.Colectica.Model.dll
Syntax
public interface IMetadataValidationCheck
Properties
Category
Gets the category of the metadata validation check.
Declaration
string Category { get; }
Property Value
Type | Description |
---|---|
System.String |
Name
Gets the name of the metadata validation check.
Declaration
string Name { get; }
Property Value
Type | Description |
---|---|
System.String |
Methods
PerformCheck(IVersionable)
Performs the validation check on the specified item.
Declaration
List<MetadataValidationResult> PerformCheck(IVersionable item)
Parameters
Type | Name | Description |
---|---|---|
IVersionable | item | The item on which the metadata validation check is to be performed. |
Returns
Type | Description |
---|---|
List<MetadataValidationResult> | The result of the validation check. |