Click or drag to resize

ProtocolToUpdateProcessor Class

A processor for the SPARQL Graph Store HTTP Protocol which operates by translating the requests into SPARQL Query/Update commands as specified by the SPARQL Graph Store HTTP Protocol specification and passing the generated commands to a ISparqlUpdateProcessor which will handle the actual application of the updates.
Inheritance Hierarchy

Namespace:  VDS.RDF.Update.Protocol
Assembly:  dotNetRDF (in dotNetRDF.dll) Version:
Syntax
public class ProtocolToUpdateProcessor : BaseProtocolProcessor

The ProtocolToUpdateProcessor type exposes the following members.

Constructors
  NameDescription
Public methodProtocolToUpdateProcessor
Creates a new Protocol to Update Processor.
Top
Methods
  NameDescription
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.)
Protected methodGetGraph
Retrieves the Graph with the given URI.
(Overrides BaseProtocolProcessorGetGraph(Uri).)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodHasGraph
Determines whether a Graph with the given URI exists.
(Overrides BaseProtocolProcessorHasGraph(Uri).)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Protected methodMintGraphUri
Generates a new Graph URI that should be used to create a new Graph in the Store in conjunction with the ProcessPostCreate() operation.
(Inherited from BaseProtocolProcessor.)
Protected methodParsePayload
Gets the Graph which can be parsed from the request body.
(Inherited from BaseProtocolProcessor.)
Public methodProcessDelete
Processes a DELETE operation.
(Overrides BaseProtocolProcessorProcessDelete(IHttpContext).)
Public methodProcessGet
Processes a GET operation.
(Overrides BaseProtocolProcessorProcessGet(IHttpContext).)
Public methodProcessHead
Processes a HEAD operation.
(Overrides BaseProtocolProcessorProcessHead(IHttpContext).)
Public methodProcessPatch
Processes a PATCH operation.
(Overrides BaseProtocolProcessorProcessPatch(IHttpContext).)
Public methodProcessPost
Processes a POST operation.
(Overrides BaseProtocolProcessorProcessPost(IHttpContext).)
Public methodProcessPostCreate
Processes a POST operation which adds triples to a new Graph in the Store and returns the URI of the newly created Graph.
(Overrides BaseProtocolProcessorProcessPostCreate(IHttpContext).)
Public methodProcessPut
Processes a PUT operation.
(Overrides BaseProtocolProcessorProcessPut(IHttpContext).)
Protected methodResolveGraphUri(IHttpContext)
Gets the Graph URI that the request should affect.
(Inherited from BaseProtocolProcessor.)
Protected methodResolveGraphUri(IHttpContext, IGraph)
Gets the Graph URI that the request should affect.
(Inherited from BaseProtocolProcessor.)
Protected methodSendResultsToClient
Sends the given Graph to the Client via the HTTP Response.
(Inherited from BaseProtocolProcessor.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Remarks
The conversion from HTTP operation to SPARQL Query/Update is as defined in the SPARQL 1.1 Graph Store HTTP Protocol specification.
See Also