Class CompressingTurtleWriterContext
Writer Context for Compressing Turtle Writers.
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: VDS.RDF.Writing.Contexts
Assembly: dotNetRDF.dll
Syntax
public class CompressingTurtleWriterContext : TurtleWriterContext, ICollectionCompressingWriterContext, IWriterContext
Constructors
| Improve this Doc View SourceCompressingTurtleWriterContext(IGraph, TextWriter)
Creates a new Turtle Writer Context with default settings.
Declaration
public CompressingTurtleWriterContext(IGraph g, TextWriter output)
Parameters
Type | Name | Description |
---|---|---|
IGraph | g | Graph to write. |
System.IO.TextWriter | output | TextWriter to write to. |
CompressingTurtleWriterContext(IGraph, TextWriter, Boolean, Boolean)
Creates a new Turtle Writer Context with custom settings.
Declaration
public CompressingTurtleWriterContext(IGraph g, TextWriter output, bool prettyPrint, bool hiSpeed)
Parameters
Type | Name | Description |
---|---|---|
IGraph | g | Graph to write. |
System.IO.TextWriter | output | TextWriter to write to. |
System.Boolean | prettyPrint | Pretty Print Mode. |
System.Boolean | hiSpeed | High Speed Mode. |
CompressingTurtleWriterContext(IGraph, TextWriter, Boolean, Boolean, TurtleSyntax)
Creates a new Turtle Writer Context with custom settings.
Declaration
public CompressingTurtleWriterContext(IGraph g, TextWriter output, bool prettyPrint, bool hiSpeed, TurtleSyntax syntax)
Parameters
Type | Name | Description |
---|---|---|
IGraph | g | Graph to write. |
System.IO.TextWriter | output | TextWriter to write to. |
System.Boolean | prettyPrint | Pretty Print Mode. |
System.Boolean | hiSpeed | High Speed Mode. |
TurtleSyntax | syntax | Turtle Syntax. |
CompressingTurtleWriterContext(IGraph, TextWriter, Int32, Boolean, Boolean)
Creates a new Turtle Writer Context with custom settings.
Declaration
public CompressingTurtleWriterContext(IGraph g, TextWriter output, int compressionLevel, bool prettyPrint, bool hiSpeed)
Parameters
Type | Name | Description |
---|---|---|
IGraph | g | Graph to write. |
System.IO.TextWriter | output | TextWriter to write to. |
System.Int32 | compressionLevel | Compression Level to use. |
System.Boolean | prettyPrint | Pretty Print Mode. |
System.Boolean | hiSpeed | High Speed Mode. |
CompressingTurtleWriterContext(IGraph, TextWriter, Int32, Boolean, Boolean, TurtleSyntax)
Creates a new Turtle Writer Context with custom settings.
Declaration
public CompressingTurtleWriterContext(IGraph g, TextWriter output, int compressionLevel, bool prettyPrint, bool hiSpeed, TurtleSyntax syntax)
Parameters
Type | Name | Description |
---|---|---|
IGraph | g | Graph to write. |
System.IO.TextWriter | output | TextWriter to write to. |
System.Int32 | compressionLevel | Compression Level to use. |
System.Boolean | prettyPrint | Pretty Print Mode. |
System.Boolean | hiSpeed | High Speed Mode. |
TurtleSyntax | syntax | Turtle Syntax. |
CompressingTurtleWriterContext(IGraph, TextWriter, TurtleSyntax)
Creates a new Turtle Writer Context with default settings.
Declaration
public CompressingTurtleWriterContext(IGraph g, TextWriter output, TurtleSyntax syntax)
Parameters
Type | Name | Description |
---|---|---|
IGraph | g | Graph to write. |
System.IO.TextWriter | output | TextWriter to write to. |
TurtleSyntax | syntax | Turtle Syntax. |
Properties
| Improve this Doc View SourceCollections
Represents the mapping from Blank Nodes to Collections.
Declaration
public Dictionary<INode, OutputRdfCollection> Collections { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.Dictionary<INode, OutputRdfCollection> |
TriplesDone
Stores the Triples that should be excluded from standard output as they are part of collections.
Declaration
public BaseTripleCollection TriplesDone { get; }
Property Value
Type | Description |
---|---|
BaseTripleCollection |