namespace EmbedIO { /// /// Exposes constants for possible values of the Content-Encoding HTTP header. /// /// public static class CompressionMethodNames { /// /// Specifies no compression. /// /// public const string None = "identity"; /// /// Specifies the "Deflate" compression method. /// /// public const string Deflate = "deflate"; /// /// Specifies the GZip compression method. /// /// public const string Gzip = "gzip"; } }