Show / Hide Table of Contents

Class StickyCookieLoadBalancingMethod

An object that represents the sticky-cookie load balancing method and its properties.

Inheritance
object
LoadBalancingMethod
StickyCookieLoadBalancingMethod
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 StickyCookieLoadBalancingMethod : LoadBalancingMethod

Properties

Domain

Declaration
[JsonProperty(PropertyName = "domain")]
public string Domain { get; set; }
Property Value
Type Description
string

The domain for which the cookie is set, defaults to WAAS policy domain.

ExpirationTimeInSeconds

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

The time for which a browser should keep the cookie in seconds. Empty value will cause the cookie to expire at the end of a browser session.

Name

Declaration
[JsonProperty(PropertyName = "name")]
public string Name { get; set; }
Property Value
Type Description
string

The name of the cookie used to track the persistence. Can contain any US-ASCII character except separator or control character.

In this article
Back to top