Show / Hide Table of Contents

Class ResponseCompressionPolicy

An object that specifies a compression policy for HTTP response from ENABLEMENT POINT to the client.
This compression policy can be used to enable support for HTTP response compression algorithms like gzip and configure the conditions of when a compression algorithm will be used.
HTTP responses will only be compressed if the client indicates support for one of the enabled compression algorithms via the "Accept-Encoding" request header.

Inheritance
object
ResponseCompressionPolicy
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.WaaService.Models
Assembly: OCI.DotNetSDK.Waa.dll
Syntax
public class ResponseCompressionPolicy

Properties

GzipCompression

Declaration
[JsonProperty(PropertyName = "gzipCompression")]
public GzipCompressionPolicy GzipCompression { get; set; }
Property Value
Type Description
GzipCompressionPolicy
In this article
Back to top