Click or drag to resize

SparqlRemoteEndpoint Class

A Class for connecting to a remote SPARQL Endpoint and executing Queries against it.
Inheritance Hierarchy

Namespace:  VDS.RDF.Query
Assembly:  dotNetRDF (in dotNetRDF.dll) Version:
Syntax
public class SparqlRemoteEndpoint : BaseEndpoint

The SparqlRemoteEndpoint type exposes the following members.

Constructors
  NameDescription
Protected methodSparqlRemoteEndpoint
Empty Constructor for use by derived classes.
Public methodSparqlRemoteEndpoint(Uri)
Creates a new SPARQL Endpoint for the given Endpoint URI.
Public methodSparqlRemoteEndpoint(Uri, IEnumerableString)
Creates a new SPARQL Endpoint for the given Endpoint URI using the given Default Graph URI.
Public methodSparqlRemoteEndpoint(Uri, IEnumerableUri)
Creates a new SPARQL Endpoint for the given Endpoint URI using the given Default Graph URI.
Public methodSparqlRemoteEndpoint(Uri, String)
Creates a new SPARQL Endpoint for the given Endpoint URI using the given Default Graph Uri.
Public methodSparqlRemoteEndpoint(Uri, Uri)
Creates a new SPARQL Endpoint for the given Endpoint Uri using the given Default Graph Uri.
Public methodSparqlRemoteEndpoint(Uri, IEnumerableString, IEnumerableString)
Creates a new SPARQL Endpoint for the given Endpoint URI using the given Default Graph URI.
Public methodSparqlRemoteEndpoint(Uri, IEnumerableString, IEnumerableUri)
Creates a new SPARQL Endpoint for the given Endpoint URI using the given Default Graph URI.
Public methodSparqlRemoteEndpoint(Uri, IEnumerableUri, IEnumerableString)
Creates a new SPARQL Endpoint for the given Endpoint URI using the given Default Graph URI.
Public methodSparqlRemoteEndpoint(Uri, IEnumerableUri, IEnumerableUri)
Creates a new SPARQL Endpoint for the given Endpoint URI using the given Default Graph URI.
Public methodSparqlRemoteEndpoint(Uri, String, IEnumerableString)
Creates a new SPARQL Endpoint for the given Endpoint URI using the given Default Graph URI.
Public methodSparqlRemoteEndpoint(Uri, Uri, IEnumerableString)
Creates a new SPARQL Endpoint for the given Endpoint URI using the given Default Graph URI.
Public methodSparqlRemoteEndpoint(Uri, Uri, IEnumerableUri)
Creates a new SPARQL Endpoint for the given Endpoint URI using the given Default Graph URI.
Top
Properties
  NameDescription
Public propertyCredentials
Gets/Sets the HTTP authentication credentials to be used.
(Inherited from BaseEndpoint.)
Public propertyDefaultGraphs
Gets the Default Graph URIs for Queries made to the SPARQL Endpoint.
Public propertyHttpMode
Gets/Sets the HTTP Mode used for requests.
(Inherited from BaseEndpoint.)
Public propertyNamedGraphs
Gets the List of Named Graphs used in requests.
Public propertyProxy
Gets/Sets a Proxy Server to be used.
(Inherited from BaseEndpoint.)
Public propertyProxyCredentials
Gets/Sets Credentials to be used for Proxy Server.
(Inherited from BaseEndpoint.)
Public propertyRdfAcceptHeader
Gets/Sets the Accept Header sent with CONSTRUCT/DESCRIBE queries.
Public propertyResultsAcceptHeader
Gets/Sets the Accept Header sent with ASK/SELECT queries.
Public propertyTimeout
Gets/Sets the HTTP Timeouts used specified in milliseconds.
(Inherited from BaseEndpoint.)
Public propertyUri
Gets the Endpoints URI.
(Inherited from BaseEndpoint.)
Public propertyUseCredentialsForProxy
Controls whether the Credentials set with the SetCredentials() method or the Credentialsare also used for a Proxy (if used).
(Inherited from BaseEndpoint.)
Public propertyUserAgent
Gets/Sets the user agent string to pass in the request header.
(Inherited from BaseEndpoint.)
Top
Methods
  NameDescription
Protected methodApplyCustomRequestOptions
Method which may be overridden in derived classes to add any additional custom request options/headers to the request.
(Inherited from BaseEndpoint.)
Protected methodApplyRequestOptions
Applies generic request options (timeout, authorization and proxy server) to a request.
(Inherited from BaseEndpoint.)
Public methodClearCredentials
Clears any in-use credentials so subsequent requests will not use HTTP authentication.
(Inherited from BaseEndpoint.)
Public methodClearProxy
Clears any in-use credentials so subsequent requests will not use a proxy server.
(Inherited from BaseEndpoint.)
Public methodClearProxyCredentials
Clears the in-use proxy credentials so subsequent requests still use the proxy server but without credentials.
(Inherited from BaseEndpoint.)
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodQueryRaw(String)
Makes a Query to a SPARQL Endpoint and returns the raw Response.
Public methodQueryRaw(String, String)
Makes a Query to a SPARQL Endpoint and returns the raw Response.
Public methodQueryWithResultGraph(String)
Makes a Query where the expected Result is an RDF Graph ie. CONSTRUCT and DESCRIBE Queries.
Public methodQueryWithResultGraph(IRdfHandler, String)
Makes a Query where the expected Result is an RDF Graph ie. CONSTRUCT and DESCRIBE Queries.
Public methodQueryWithResultGraph(String, GraphCallback, Object)
Makes a Query asynchronously where the expected Result is an RDF Graph ie. CONSTRUCT and DESCRIBE Queries.
Public methodQueryWithResultGraph(IRdfHandler, String, QueryCallback, Object)
Makes a Query asynchronously where the expected Result is an RDF Graph ie. CONSTRUCT and DESCRIBE Queries.
Public methodQueryWithResultSet(String)
Makes a Query where the expected Result is a SparqlResultSet i.e. SELECT and ASK Queries.
Public methodQueryWithResultSet(ISparqlResultsHandler, String)
Makes a Query where the expected Result is a SparqlResultSet i.e. SELECT and ASK Queries.
Public methodQueryWithResultSet(String, SparqlResultsCallback, Object)
Makes a Query asynchronously where the expected Result is a SparqlResultSet i.e. SELECT and ASK Queries.
Public methodQueryWithResultSet(ISparqlResultsHandler, String, QueryCallback, Object)
Makes a Query asynchronously where the expected Result is a SparqlResultSet i.e. SELECT and ASK Queries.
Public methodSerializeConfiguration
Serializes the Endpoint's Configuration.
(Overrides BaseEndpointSerializeConfiguration(ConfigurationSerializationContext).)
Public methodSetCredentials(String, String)
Sets the HTTP Digest authentication credentials to be used.
(Inherited from BaseEndpoint.)
Public methodSetCredentials(String, String, String)
Sets the HTTP Digest authentication credentials to be used.
(Inherited from BaseEndpoint.)
Public methodSetProxy(String)
Sets a Proxy Server to be used.
(Inherited from BaseEndpoint.)
Public methodSetProxy(Uri)
Sets a Proxy Server to be used.
(Inherited from BaseEndpoint.)
Public methodSetProxyCredentials(String, String)
Sets Credentials to be used for Proxy Server.
(Inherited from BaseEndpoint.)
Public methodSetProxyCredentials(String, String, String)
Sets Credentials to be used for Proxy Server.
(Inherited from BaseEndpoint.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
See Also