Show / Hide Table of Contents

Class WriterCompressionLevel

Class containing constants for possible Compression Levels.

Inheritance
object
WriterCompressionLevel
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: VDS.RDF.Writing
Assembly: dotNetRdf.dll
Syntax
public static class WriterCompressionLevel
Remarks

These are intended as guidance only, Writer implementations are free to interpret these levels as they desire or to ignore them entirely and use their own levels.

Fields

| Edit this page View Source

Default

Default Compression should be used (1).

Declaration
public const int Default = 1
Field Value
Type Description
int
| Edit this page View Source

High

High Compression should be used (10).

Declaration
public const int High = 10
Field Value
Type Description
int
| Edit this page View Source

Medium

Medium Compression should be used (3).

Declaration
public const int Medium = 3
Field Value
Type Description
int
| Edit this page View Source

Minimal

Minimal Compression should be used (0).

Declaration
public const int Minimal = 0
Field Value
Type Description
int
| Edit this page View Source

More

More Compression should be used (5).

Declaration
public const int More = 5
Field Value
Type Description
int
| Edit this page View Source

None

No Compression should be used (-1).

Declaration
public const int None = -1
Field Value
Type Description
int
  • Edit this page
  • View Source
In this article
  • Fields
    • Default
    • High
    • Medium
    • Minimal
    • More
    • None
Back to top Generated by DocFX