Show / Hide Table of Contents

Class RemoveHttpResponseHeaderRule

An object that represents the action of removing a header from a response. This rule applies only to HTTP listeners.
If the same header appears more than once in the response, the load balancer removes all occurances of the specified header.
Note: The system does not distinquish between underscore and dash characters in headers. That is, it treats example_header_name and example-header-name as identical. Oracle recommends that you do not rely on underscore or dash characters to uniquely distinguish header names.

Inheritance
object
Rule
RemoveHttpResponseHeaderRule
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.LoadbalancerService.Models
Assembly: OCI.DotNetSDK.Loadbalancer.dll
Syntax
public class RemoveHttpResponseHeaderRule : Rule

Properties

Header

Declaration
[Required(ErrorMessage = "Header is required.")]
[JsonProperty(PropertyName = "header")]
public string Header { get; set; }
Property Value
Type Description
string

A header name that conforms to RFC 7230.
Example: example_header_name

Remarks

Required

In this article
Back to top