BlankNodeGeneratorGenerateBlankNodeIdentifier Method |
Generates a unique blank node identifier for the specified input identifier.
Namespace:
VDS.RDF.JsonLd.Processors
Assembly:
dotNetRDF (in dotNetRDF.dll) Version:
Syntax public string GenerateBlankNodeIdentifier(
string identifier
)
Public Function GenerateBlankNodeIdentifier (
identifier As String
) As String
Parameters
- identifier
- Type: SystemString
Return Value
Type:
String[Missing <returns> documentation for "M:VDS.RDF.JsonLd.Processors.BlankNodeGenerator.GenerateBlankNodeIdentifier(System.String)"]
Implements
IBlankNodeGeneratorGenerateBlankNodeIdentifier(String)Remarks Blank node identifiers are of the form _:{counterPrefix}{count} where {counterPrefix} is the
string provided in the constructor of this class and {count} is a monotonically increasing integer value.
See Also