Handler method for an individual RDF statement

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

Syntax

C#
void Triple(
	string subject,
	bool subjectIsBNode,
	string predicate,
	bool predicateIsBNode,
	string obj,
	bool objIsBNode,
	bool objIsLiteral,
	string dataType,
	string langCode,
	string graphUri
)
Visual Basic
Sub Triple ( 
	subject As String,
	subjectIsBNode As Boolean,
	predicate As String,
	predicateIsBNode As Boolean,
	obj As String,
	objIsBNode As Boolean,
	objIsLiteral As Boolean,
	dataType As String,
	langCode As String,
	graphUri As String
)
Visual C++
void Triple(
	String^ subject, 
	bool subjectIsBNode, 
	String^ predicate, 
	bool predicateIsBNode, 
	String^ obj, 
	bool objIsBNode, 
	bool objIsLiteral, 
	String^ dataType, 
	String^ langCode, 
	String^ graphUri
)
F#
abstract Triple : 
        subject : string * 
        subjectIsBNode : bool * 
        predicate : string * 
        predicateIsBNode : bool * 
        obj : string * 
        objIsBNode : bool * 
        objIsLiteral : bool * 
        dataType : string * 
        langCode : string * 
        graphUri : string -> unit 

Parameters

subject
Type: System..::..String
The statement subject resource URI
subjectIsBNode
Type: System..::..Boolean
True if the value of subject is a BNode identifier
predicate
Type: System..::..String
The predicate resource URI
predicateIsBNode
Type: System..::..Boolean
True if the value of predicate is a BNode identifier.
obj
Type: System..::..String
The object of the statement
objIsBNode
Type: System..::..Boolean
True if the value of obj is a BNode identifier.
objIsLiteral
Type: System..::..Boolean
True if the value of obj is a literal string
dataType
Type: System..::..String
The datatype URI for the object literal or null if the object is not a literal
langCode
Type: System..::..String
The language code for the object literal or null if the object is not a literal
graphUri
Type: System..::..String
The graph URI for the statement

See Also