Query a specific commit point of a store
Namespace: BrightstarDB.ClientAssembly: BrightstarDB (in BrightstarDB.dll) Version: 1.9.0.0 (1.9.0.0)
Syntax
C# |
---|
public Stream ExecuteQuery(
ICommitPointInfo commitPoint,
string queryExpression,
IEnumerable<string> defaultGraphUris,
SparqlResultsFormat resultsFormat,
RdfFormat graphFormat,
out ISerializationFormat streamFormat
) |
Visual Basic |
---|
Public Function ExecuteQuery (
commitPoint As ICommitPointInfo,
queryExpression As String,
defaultGraphUris As IEnumerable(Of String),
resultsFormat As SparqlResultsFormat,
graphFormat As RdfFormat,
<OutAttribute> ByRef streamFormat As ISerializationFormat
) As Stream |
Visual C++ |
---|
public:
virtual Stream^ ExecuteQuery(
ICommitPointInfo^ commitPoint,
String^ queryExpression,
IEnumerable<String^>^ defaultGraphUris,
SparqlResultsFormat^ resultsFormat,
RdfFormat^ graphFormat,
[OutAttribute] ISerializationFormat^% streamFormat
) sealed |
F# |
---|
abstract ExecuteQuery :
commitPoint : ICommitPointInfo *
queryExpression : string *
defaultGraphUris : IEnumerable<string> *
resultsFormat : SparqlResultsFormat *
graphFormat : RdfFormat *
streamFormat : ISerializationFormat byref -> Stream
override ExecuteQuery :
commitPoint : ICommitPointInfo *
queryExpression : string *
defaultGraphUris : IEnumerable<string> *
resultsFormat : SparqlResultsFormat *
graphFormat : RdfFormat *
streamFormat : ISerializationFormat byref -> Stream |
Parameters
- commitPoint
- Type: BrightstarDB.Client..::..ICommitPointInfo
The commit point be queried
- queryExpression
- Type: System..::..String
The SPARQL query string
- defaultGraphUris
- Type: System.Collections.Generic..::..IEnumerable<(Of <(<'String>)>)>
An enumeration over the URIs of the graphs that will be taken together as the default graph for the query. May be NULL to use the built-in default graph
- resultsFormat
- Type: BrightstarDB..::..SparqlResultsFormat
Specifies the serialization format for the SPARQL result set returned by the query. May be NULL to indicate that an RDF graph is the expected result.
- graphFormat
- Type: BrightstarDB..::..RdfFormat
Specifies the serialization format for the RDF graph returned by the query. May be NULL to indicate that a SPARQL results set is the expected result.
- streamFormat
- Type: BrightstarDB..::..ISerializationFormat%
Specifies the serialization format used in the returned Stream.
Return Value
Type:
StreamA stream containing the results of executing the query
Implements
IBrightstarService..::..ExecuteQuery(ICommitPointInfo, String, IEnumerable<(Of <<'(String>)>>), SparqlResultsFormat, RdfFormat, ISerializationFormat%)
See Also