Click or drag to resize

GenericProtocolProcessorProcessPost Method

Processes a POST operation.

Namespace:  VDS.RDF.Update.Protocol
Assembly:  dotNetRDF (in dotNetRDF.dll) Version:
Syntax
public override void ProcessPost(
	IHttpContext context
)

Parameters

context
Type: VDS.RDF.WebIHttpContext
HTTP Context.

Implements

ISparqlHttpProtocolProcessorProcessPost(IHttpContext)
Remarks

Warning: If the underlying IStorageProvider is read-only then this operation returns a 403 Forbidden.

Otherwise this is implemented using UpdateGraph() if updates are supported, if not then the Graph has to be loaded, the POSTed data merged into it and then the Graph is saved again.

See Also