Parse the contents of data as an N3 file

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

Syntax

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

Parameters

data
Type: System.IO..::..Stream
The data stream to parse
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