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: 
Syntaxprotected virtual Uri MintGraphUri(
	IHttpContext context,
	IGraph g
)
Protected Overridable Function MintGraphUri ( 
	context As IHttpContext,
	g As IGraph
) As Uri
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