Click or drag to resize

BaseWriterContext Class

Base Class for Writer Context Objects.
Inheritance Hierarchy

Namespace:  VDS.RDF.Writing.Contexts
Assembly:  dotNetRDF (in dotNetRDF.dll) Version:
Syntax
public class BaseWriterContext : IWriterContext

The BaseWriterContext type exposes the following members.

Constructors
  NameDescription
Public methodBaseWriterContext(IGraph, TextWriter)
Creates a new Base Writer Context with default settings.
Public methodBaseWriterContext(IGraph, TextWriter, Int32)
Creates a new Base Writer Context with custom settings.
Public methodBaseWriterContext(IGraph, TextWriter, Int32, Boolean, Boolean)
Creates a new Base Writer Context with custom settings.
Top
Properties
  NameDescription
Public propertyCompressionLevel
Gets/Sets the Compression Level used.
Public propertyGraph
Gets the Graph being written.
Public propertyHighSpeedModePermitted
Gets/Sets the High Speed Mode used.
Public propertyNodeFormatter
Gets/Sets the Node Formatter in use.
Public propertyOutput
Gets the TextWriter being written to.
Public propertyPrettyPrint
Gets/Sets the Pretty Printing Mode used.
Public propertyQNameMapper
Gets the QName Output Mapper in use.
Public propertyUriFormatter
Gets/Sets the URI Formatter in use.
Top
Methods
  NameDescription
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Fields
  NameDescription
Protected field_compressionLevel
Compression Level to be used.
Protected field_formatter
Node Formatter.
Protected field_hiSpeedAllowed
High Speed Mode setting.
Protected field_prettyPrint
Pretty Printing Mode setting.
Protected field_qnameMapper
QName Output Mapper.
Protected field_uriFormatter
URI Formatter.
Top
Remarks
This is not an abstract class since some writers will require only this information or possibly less.
See Also