Class MetadataValidationResult
Represents the result of a metadata validation check.
Inheritance
System.Object
MetadataValidationResult
Namespace: Algenta.Colectica.Model.Utility
Assembly: Algenta.Colectica.Model.dll
Syntax
public class MetadataValidationResult : object
Properties
Details
Gets extended details about the result.
Declaration
public string Details { get; set; }
Property Value
Type | Description |
---|---|
System.String |
IsApplicable
Returns a value indicating whether a validation check is applicable to an item.
Declaration
public bool IsApplicable { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
IsValid
Gets a value indicating whether an item passed a validation check.
Declaration
public bool IsValid { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Level
Gets the severity level of the result.
Declaration
public MessageType Level { get; set; }
Property Value
Type | Description |
---|---|
MessageType |
Message
Gets the message text of the result.
Declaration
public string Message { get; set; }
Property Value
Type | Description |
---|---|
System.String |
RelatedItem
Gets information about the item to which the result refers.
Declaration
public RepositoryItemMetadata RelatedItem { get; set; }
Property Value
Type | Description |
---|---|
RepositoryItemMetadata |
ValidationCheckName
Gets the name of the metadata validation check.
Declaration
public string ValidationCheckName { get; set; }
Property Value
Type | Description |
---|---|
System.String |