Class WriterCompressionLevel
Class containing constants for possible Compression Levels.
Inherited Members
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 SourceDefault
Default Compression should be used (1).
Declaration
public const int Default = 1
Field Value
| Type | Description |
|---|---|
| int |
High
High Compression should be used (10).
Declaration
public const int High = 10
Field Value
| Type | Description |
|---|---|
| int |
Medium
Medium Compression should be used (3).
Declaration
public const int Medium = 3
Field Value
| Type | Description |
|---|---|
| int |
Minimal
Minimal Compression should be used (0).
Declaration
public const int Minimal = 0
Field Value
| Type | Description |
|---|---|
| int |
More
More Compression should be used (5).
Declaration
public const int More = 5
Field Value
| Type | Description |
|---|---|
| int |
None
No Compression should be used (-1).
Declaration
public const int None = -1
Field Value
| Type | Description |
|---|---|
| int |