Show / Hide Table of Contents

Class ValidationCheckResult

Represents the result of a validation check.

Inheritance
object
ValidationCheckResult
Inherited Members
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
Namespace: Algenta.Colectica.Model.Validation
Assembly: Algenta.Colectica.Model.dll
Syntax
public class ValidationCheckResult

Constructors

ValidationCheckResult()

Initializes a new instance of the ValidationCheckResult class.

Declaration
public ValidationCheckResult()

ValidationCheckResult(bool, string)

Initializes a new instance of the ValidationCheckResult class.

Declaration
public ValidationCheckResult(bool isValid, string message = null)
Parameters
Type Name Description
bool isValid

Whether the checked object is valid.

string message

The message.

Properties

IsValid

Gets or sets a value indicating whether the object is valid.

Declaration
public bool IsValid { get; set; }
Property Value
Type Description
bool

true if the value is valid; otherwise, false.

Message

Gets or sets a message providing details about why an object is invalid.

Declaration
public string Message { get; set; }
Property Value
Type Description
string

The message.

Extension Methods

Extensions.Yield<T>(T)
In this article
Back to top Generated by DocFX