SemWeb.Query.SparqlEngine.Select C# (CSharp) Method

Select() public method

public Select ( SelectableSource source, QueryResultSink sink ) : void
source SelectableSource
sink QueryResultSink
return void
        public void Select(SelectableSource source, QueryResultSink sink)
        {
            if (!(query is SelectQuery))
                throw new InvalidOperationException("Only SELECT queries are supported by this method (" + query.GetType() + ").");
            Run(source, sink);
        }

Same methods

SparqlEngine::Select ( SelectableSource source, TextWriter output ) : void