Show / Hide Table of Contents

Class CachingRuleCriteria

A caching rule criteria condition and value.

Inheritance
object
CachingRuleCriteria
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 CachingRuleCriteria

Properties

Condition

Declaration
[Required(ErrorMessage = "Condition is required.")]
[JsonProperty(PropertyName = "condition")]
[JsonConverter(typeof(ResponseEnumConverter))]
public CachingRuleCriteria.ConditionEnum? Condition { get; set; }
Property Value
Type Description
CachingRuleCriteria.ConditionEnum?

Value

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

The value of the caching rule criteria.

Remarks

Required

In this article
Back to top