Click or drag to resize

SparqlRemoteUpdateEndpoint Class

A Class for connecting to a remote SPARQL Update endpoint and executing Updates against it.
Inheritance Hierarchy
SystemObject
  VDS.RDFBaseEndpoint
    VDS.RDF.UpdateSparqlRemoteUpdateEndpoint

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

The SparqlRemoteUpdateEndpoint type exposes the following members.

Constructors
  NameDescription
Public methodSparqlRemoteUpdateEndpoint(String)
Creates a new SPARQL Update Endpoint for the given URI.
Public methodSparqlRemoteUpdateEndpoint(Uri)
Creates a new SPARQL Update Endpoint for the given URI.
Top
Properties
  NameDescription
Public propertyCredentials
Gets/Sets the HTTP authentication credentials to be used.
(Inherited from BaseEndpoint.)
Public propertyHttpMode
Gets/Sets the HTTP Method used for requests.
(Overrides BaseEndpointHttpMode.)
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 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 methodSerializeConfiguration
Serializes configuration for the endpoint.
(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.)
Public methodUpdate(String)
Makes an update request to the remote endpoint.
Public methodUpdate(String, UpdateCallback, Object)
Makes an update request asynchronously to the remote endpoint.
Top
See Also