Interface IBlankNodeGenerator
Interface for a blank node identifier generator that generates a unique blank node identifier for a given input identifier.
Namespace: VDS.RDF.JsonLd
Assembly: dotNetRdf.dll
Syntax
public interface IBlankNodeGenerator
Methods
| Improve this Doc View SourceGenerateBlankNodeIdentifier(string)
Return a unique blank node identifier for the specified input identifier.
Declaration
string GenerateBlankNodeIdentifier(string identifier)
Parameters
Type | Name | Description |
---|---|---|
string | identifier |
Returns
Type | Description |
---|---|
string | A blank node identifier string (using standard Turtle notation for blank node identifiers). |
Remarks
An implementation MUST guarantee to return the same blank node identifier when called multiple times with the same input identifier.