Interface IVisitable
Interface to be implemented by classes that can be visited by an ISparqlAlgebraVisitor<T>.
Namespace: VDS.RDF.Query
Assembly: dotNetRdf.dll
Syntax
public interface IVisitable
Methods
| Improve this Doc View SourceAccept<T>(ISparqlAlgebraVisitor<T>)
Accept a simple algebra visitor.
Declaration
T Accept<T>(ISparqlAlgebraVisitor<T> visitor)
Parameters
Type | Name | Description |
---|---|---|
ISparqlAlgebraVisitor<T> | visitor | The visitor implementation. |
Returns
Type | Description |
---|---|
T |
Type Parameters
Name | Description |
---|---|
T | The type returned by the Visit methods of the visitor. |