Interface INodeFormatter
Interface for classes which can format Nodes into Strings.
Namespace: VDS.RDF.Writing.Formatting
Assembly: dotNetRdf.dll
Syntax
public interface INodeFormatter
Methods
| Edit this page View SourceFormat(INode)
Formats a Node as a String.
Declaration
string Format(INode n)
Parameters
| Type | Name | Description |
|---|---|---|
| INode | n | Node. |
Returns
| Type | Description |
|---|---|
| string |
Format(INode, TripleSegment?)
Formats a Node as a String for a specific segment of a Triple.
Declaration
string Format(INode n, TripleSegment? segment)
Parameters
| Type | Name | Description |
|---|---|---|
| INode | n | Node. |
| TripleSegment? | segment | Segment. |
Returns
| Type | Description |
|---|---|
| string |