Click or drag to resize

BaseProtocolProcessor Class

Abstract Base class for SPARQL Graph Store HTTP Protocol for Graph Management implementations.
Inheritance Hierarchy

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

The BaseProtocolProcessor type exposes the following members.

Constructors
  NameDescription
Protected methodBaseProtocolProcessor
Initializes a new instance of the BaseProtocolProcessor class
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.
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.
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.
Protected methodParsePayload
Gets the Graph which can be parsed from the request body.
Public methodProcessDelete
Processes a DELETE operation.
Public methodProcessGet
Processes a GET operation.
Public methodProcessHead
Processes a HEAD operation.
Public methodProcessPatch
Processes a PATCH operation.
Public methodProcessPost
Processes a POST operation.
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.
Public methodProcessPut
Processes a PUT operation.
Protected methodResolveGraphUri(IHttpContext)
Gets the Graph URI that the request should affect.
Protected methodResolveGraphUri(IHttpContext, IGraph)
Gets the Graph URI that the request should affect.
Protected methodSendResultsToClient
Sends the given Graph to the Client via the HTTP Response.
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Fields
  NameDescription
Public fieldStatic memberDefaultParameterPattern
This is the Pattern that is used to check whether ?default is present in the querystring. This is needed since IIS does not recognise ?default as being a valid querystring key unless it ends in a = which the specification does not mandate so cannot be assumed.
Top
See Also