SyntaxValidationResults Constructor (Boolean, String, Object, IEnumerable<String>, Exception) |
Creates new Syntax Validation Results.
Namespace:
VDS.RDF.Parsing.Validation
Assembly:
dotNetRDF (in dotNetRDF.dll) Version:
Syntaxpublic SyntaxValidationResults(
bool valid,
string message,
Object result,
IEnumerable<string> warnings,
Exception error
)
Public Sub New (
valid As Boolean,
message As String,
result As Object,
warnings As IEnumerable(Of String),
error As Exception
)
Parameters
- valid
- Type: System.Boolean
Whether the Syntax was valid. - message
- Type: System.String
Validation Message. - result
- Type: System.Object
Results Object. - warnings
- Type: System.Collections.Generic.IEnumerable<String>
Enumeration of Warnings. - error
- Type: System.Exception
Error that occurred.
See Also