Click or drag to resize

BlankNodeGenerator.GenerateBlankNodeIdentifier 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
)

Parameters

identifier
Type: System.String

Return Value

Type: String

[Missing <returns> documentation for "M:VDS.RDF.JsonLd.Processors.BlankNodeGenerator.GenerateBlankNodeIdentifier(System.String)"]

Implements

IBlankNodeGenerator.GenerateBlankNodeIdentifier(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