Show / Hide Table of Contents

Class DoubleMatcher

Specifies the way to match a double value.

Inheritance
System.Object
DoubleMatcher
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.TrafficDirectorService.v2.Data
Assembly: Google.Apis.TrafficDirectorService.v2.dll
Syntax
public class DoubleMatcher : IDirectResponseSchema

Properties

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

Exact

If specified, the input double value must be equal to the value specified here.

Declaration
[JsonProperty("exact")]
public virtual double? Exact { get; set; }
Property Value
Type Description
System.Nullable<System.Double>

Range

If specified, the input double value must be in the range specified here. Note: The range is using half-open interval semantics [start, end).

Declaration
[JsonProperty("range")]
public virtual DoubleRange Range { get; set; }
Property Value
Type Description
DoubleRange

Implements

IDirectResponseSchema
In This Article
Back to top