Interface ISyntaxValidationResults
Interface for Validation Results.
Namespace: VDS.RDF.Parsing.Validation
Assembly: dotNetRdf.dll
Syntax
public interface ISyntaxValidationResults
Properties
| Improve this Doc View SourceError
Gets any validation error.
Declaration
Exception Error { get; }
Property Value
Type | Description |
---|---|
System.Exception |
IsValid
Gets whether the Syntax was valid.
Declaration
bool IsValid { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
Message
Gets an informational message about the validity/invalidity of the Syntax.
Declaration
string Message { get; }
Property Value
Type | Description |
---|---|
string |
Result
Gets any result object that was parsed from the syntax.
Declaration
object Result { get; }
Property Value
Type | Description |
---|---|
System.Object |
Warnings
Gets an enumeration of any warning messages.
Declaration
IEnumerable<string> Warnings { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<T><string> |