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