TriGWriterContext Constructor |
Creates a new TriG Writer context.
Namespace:
VDS.RDF.Writing.Contexts
Assembly:
dotNetRDF (in dotNetRDF.dll) Version:
Syntaxpublic TriGWriterContext(
ITripleStore store,
TextWriter output,
bool prettyPrint,
bool hiSpeedAllowed,
int compressionLevel,
bool n3compatability
)
Public Sub New (
store As ITripleStore,
output As TextWriter,
prettyPrint As Boolean,
hiSpeedAllowed As Boolean,
compressionLevel As Integer,
n3compatability As Boolean
)
Parameters
- store
- Type: VDS.RDF.ITripleStore
Triple Store to save. - output
- Type: System.IO.TextWriter
TextWriter to output to. - prettyPrint
- Type: System.Boolean
Whether to use pretty printing. - hiSpeedAllowed
- Type: System.Boolean
Whether high speed mode is permitted. - compressionLevel
- Type: System.Int32
Compression Level to use. - n3compatability
- Type: System.Boolean
Whether to enable N3 compatability mode.
See Also