Show / Hide Table of Contents

Class HttpHeaderRule

An object that represents the advance http header options that allow the setting of http header size and allow/disallow invalid characters in the http headers. For example httpLargeHeaderSizeInKB=32, the http header could have 4 buffers of 32KBs each This rule applies only to HTTP listeners. No more than one HttpHeaderRule object can be present in a given listener.

Inheritance
object
Rule
HttpHeaderRule
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 HttpHeaderRule : Rule

Properties

AreInvalidCharactersAllowed

Declaration
[JsonProperty(PropertyName = "areInvalidCharactersAllowed")]
public bool? AreInvalidCharactersAllowed { get; set; }
Property Value
Type Description
bool?

Indicates whether or not invalid characters in client header fields will be allowed. Valid names are composed of English letters, digits, hyphens and underscores. If "true", invalid characters are allowed in the HTTP header. If "false", invalid characters are not allowed in the HTTP header

HttpLargeHeaderSizeInKB

Declaration
[JsonProperty(PropertyName = "httpLargeHeaderSizeInKB")]
public int? HttpLargeHeaderSizeInKB { get; set; }
Property Value
Type Description
int?

The maximum size of each buffer used for reading http client request header. This value indicates the maximum size allowed for each buffer. The allowed values for buffer size are 8, 16, 32 and 64.

In this article
Back to top