Parse from a text reader

Namespace: BrightstarDB.Rdf
Assembly: BrightstarDB (in BrightstarDB.dll) Version: 1.9.0.0 (1.9.0.0)

Syntax

C#
public void Parse(
	TextReader reader,
	ITripleSink sink,
	string defaultGraphUri
)
Visual Basic
Public Sub Parse ( 
	reader As TextReader,
	sink As ITripleSink,
	defaultGraphUri As String
)
Visual C++
public:
virtual void Parse(
	TextReader^ reader, 
	ITripleSink^ sink, 
	String^ defaultGraphUri
) sealed
F#
abstract Parse : 
        reader : TextReader * 
        sink : ITripleSink * 
        defaultGraphUri : string -> unit 
override Parse : 
        reader : TextReader * 
        sink : ITripleSink * 
        defaultGraphUri : string -> unit 

Parameters

reader
Type: System.IO..::..TextReader
The reader providing the data to be parsed
sink
Type: BrightstarDB.Rdf..::..ITripleSink
The target for the parsed RDF statements
defaultGraphUri
Type: System..::..String
The default graph URI to assign to each of the parsed statements

See Also