Interface IQueryFormatter
Interface for classes which can format SPARQL Queries into Strings.
Assembly: dotNetRDF.dll
public interface IQueryFormatter : INodeFormatter, IUriFormatter
Methods
|
Improve this Doc
View Source
Formats a Graph Pattern into a String.
Declaration
string Format(GraphPattern gp)
Parameters
Returns
Type |
Description |
System.String |
|
|
Improve this Doc
View Source
Formats a Triple Pattern into a String.
Declaration
string Format(ITriplePattern tp)
Parameters
Returns
Type |
Description |
System.String |
|
|
Improve this Doc
View Source
Formats a Triple Pattern item into a String.
Declaration
string Format(PatternItem item, TripleSegment? segment)
Parameters
Type |
Name |
Description |
PatternItem |
item |
Pattern Item. |
System.Nullable<TripleSegment> |
segment |
Segment of the Triple Pattern in which the Item appears. |
Returns
Type |
Description |
System.String |
|
|
Improve this Doc
View Source
Formats a SPARQL Query into a String.
Declaration
string Format(SparqlQuery query)
Parameters
Returns
Type |
Description |
System.String |
|
Extension Methods