Class SparqlCsvParser
Parser for reading SPARQL Results that have been serialized in the SPARQL Results CSV format.
Implements
Inherited Members
Namespace: VDS.RDF.Parsing
Assembly: dotNetRdf.dll
Syntax
public class SparqlCsvParser : BaseSparqlResultsReader, ISparqlResultsReader
Methods
| Improve this Doc View SourceLoad(ISparqlResultsHandler, StreamReader, IUriFactory)
Loads a Result Set from an Input Stream using a Results Handler.
Declaration
public override void Load(ISparqlResultsHandler handler, StreamReader input, IUriFactory uriFactory)
Parameters
Type | Name | Description |
---|---|---|
ISparqlResultsHandler | handler | Results Handler to use. |
System.IO.StreamReader | input | Input Stream to read from. |
IUriFactory | uriFactory | URI Factory to use. |
Overrides
| Improve this Doc View SourceLoad(ISparqlResultsHandler, TextReader, IUriFactory)
Loads a Result Set from an Input using a Results Handler.
Declaration
public override void Load(ISparqlResultsHandler handler, TextReader input, IUriFactory uriFactory)
Parameters
Type | Name | Description |
---|---|---|
ISparqlResultsHandler | handler | Results Handler to use. |
System.IO.TextReader | input | Input to read from. |
IUriFactory | uriFactory | URI Factory to use. |
Overrides
| Improve this Doc View SourceLoad(ISparqlResultsHandler, string, IUriFactory)
Loads a Result Set from a File using a Results Handler.
Declaration
public override void Load(ISparqlResultsHandler handler, string filename, IUriFactory uriFactory)
Parameters
Type | Name | Description |
---|---|---|
ISparqlResultsHandler | handler | Results Handler to use. |
string | filename | Filename to load from. |
IUriFactory | uriFactory | URI Factory to use. |
Overrides
| Improve this Doc View SourceLoad(SparqlResultSet, StreamReader, IUriFactory)
Loads a Result Set from an Input Stream.
Declaration
public override void Load(SparqlResultSet results, StreamReader input, IUriFactory uriFactory)
Parameters
Type | Name | Description |
---|---|---|
SparqlResultSet | results | Result Set to load into. |
System.IO.StreamReader | input | Input Stream to read from. |
IUriFactory | uriFactory | URI Factory to use. |
Overrides
| Improve this Doc View SourceLoad(SparqlResultSet, TextReader, IUriFactory)
Loads a Result Set from an Input.
Declaration
public override void Load(SparqlResultSet results, TextReader input, IUriFactory uriFactory)
Parameters
Type | Name | Description |
---|---|---|
SparqlResultSet | results | Result Set to load into. |
System.IO.TextReader | input | Input to read from. |
IUriFactory | uriFactory | URI Factory to use. |
Overrides
| Improve this Doc View SourceLoad(SparqlResultSet, string, IUriFactory)
Loads a Result Set from a File.
Declaration
public override void Load(SparqlResultSet results, string filename, IUriFactory uriFactory)
Parameters
Type | Name | Description |
---|---|---|
SparqlResultSet | results | Result Set to load into. |
string | filename | File to load from. |
IUriFactory | uriFactory | URI Factory to use. |
Overrides
| Improve this Doc View SourceToString()
Gets the String representation of the Parser.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
string |
Overrides
Events
| Improve this Doc View SourceWarning
Event which is raised when the parser encounters a non-fatal issue with the syntax being parsed
Declaration
public override event SparqlWarning Warning
Event Type
Type | Description |
---|---|
SparqlWarning |