Class ValidationResults
Repräsentiert das Ergebnis einer Validierung
Inheritance
System.Object
ValidationResults
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Dataport.AppFrameDotNet.DotNetTools.Validation
Assembly: Dataport.AppFrameDotNet.DotNetTools.dll
Syntax
public class ValidationResults
Properties
Errors
Gibt eine Auflistung aller Fehlermeldungen zurück.
Declaration
public string[] Errors { get; }
Property Value
Type | Description |
---|---|
System.String[] |
Information
Gibt eine Auflistung aller Informationen zurück.
Declaration
public string[] Information { get; }
Property Value
Type | Description |
---|---|
System.String[] |
Severity
Gibt den Schweregrad der Validierung zurück.
Declaration
public Severity Severity { get; }
Property Value
Type | Description |
---|---|
Severity |
Warnings
Gibt eine Auflistung aller Warnungen zurück
Declaration
public string[] Warnings { get; }
Property Value
Type | Description |
---|---|
System.String[] |
Methods
AddError(String)
Fügt eine Fehlermeldung hinzu.
Declaration
public void AddError(string message)
Parameters
Type | Name | Description |
---|---|---|
System.String | message | Die Fehlermeldung |
AddInformation(String)
Fügt eine Informationsmeldung hinzu.
Declaration
public void AddInformation(string message)
Parameters
Type | Name | Description |
---|---|---|
System.String | message | Die Informationsmeldung |
AddWarning(String)
Fügt eine Warnungsmeldung hinzu.
Declaration
public void AddWarning(string message)
Parameters
Type | Name | Description |
---|---|---|
System.String | message | Die Warnungsmeldung |