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 |
---|---|---|
System.String | identifier |
Returns
Type | Description |
---|---|
System.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.