TurtleWriterContext Constructor (IGraph, TextWriter, Int32, Boolean, Boolean, TurtleSyntax) |
Creates a new Turtle Writer Context with custom settings.
Namespace:
VDS.RDF.Writing.Contexts
Assembly:
dotNetRDF (in dotNetRDF.dll) Version:
Syntaxpublic TurtleWriterContext(
IGraph g,
TextWriter output,
int compressionLevel,
bool prettyPrint,
bool hiSpeed,
TurtleSyntax syntax
)
Public Sub New (
g As IGraph,
output As TextWriter,
compressionLevel As Integer,
prettyPrint As Boolean,
hiSpeed As Boolean,
syntax As TurtleSyntax
)
Parameters
- g
- Type: VDS.RDF.IGraph
Graph to write. - output
- Type: System.IO.TextWriter
TextWriter to write to. - compressionLevel
- Type: System.Int32
Compression Level to use. - prettyPrint
- Type: System.Boolean
Pretty Print Mode. - hiSpeed
- Type: System.Boolean
High Speed Mode. - syntax
- Type: VDS.RDF.Parsing.TurtleSyntax
Turtle Syntax.
See Also