Show / Hide Table of Contents

Class RemoveHttpResponseHeaderAction

An object that represents the action of removing from a response all occurrences of header fields with a specified name.

Inheritance
object
HeaderManipulationAction
RemoveHttpResponseHeaderAction
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.WaasService.Models
Assembly: OCI.DotNetSDK.Waas.dll
Syntax
public class RemoveHttpResponseHeaderAction : HeaderManipulationAction

Properties

Header

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

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

Remarks

Required

In this article
Back to top