TriGWriterContext Constructor |
Creates a new TriG Writer context.
Namespace:
VDS.RDF.Writing.Contexts
Assembly:
dotNetRDF (in dotNetRDF.dll) Version:
Syntax public 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.RDFITripleStore
Triple Store to save. - output
- Type: System.IOTextWriter
TextWriter to output to. - prettyPrint
- Type: SystemBoolean
Whether to use pretty printing. - hiSpeedAllowed
- Type: SystemBoolean
Whether high speed mode is permitted. - compressionLevel
- Type: SystemInt32
Compression Level to use. - n3compatability
- Type: SystemBoolean
Whether to enable N3 compatability mode.
See Also