Click or drag to resize

BaseProtocolProcessorMintGraphUri Method

Generates a new Graph URI that should be used to create a new Graph in the Store in conjunction with the ProcessPostCreate() operation.

Namespace:  VDS.RDF.Update.Protocol
Assembly:  dotNetRDF (in dotNetRDF.dll) Version:
Syntax
protected virtual Uri MintGraphUri(
	IHttpContext context,
	IGraph g
)

Parameters

context
Type: VDS.RDF.WebIHttpContext
HTTP Context.
g
Type: VDS.RDFIGraph
Graph parsed from the request body.

Return Value

Type: Uri

[Missing <returns> documentation for "M:VDS.RDF.Update.Protocol.BaseProtocolProcessor.MintGraphUri(VDS.RDF.Web.IHttpContext,VDS.RDF.IGraph)"]

Remarks
Default behaviour is to mint a URI based on a hash of the Request IP and Date Time. Implementations can override this method to control URI creation as they desire.
See Also