Show / Hide Table of Contents

Class MatchRange

Matched range of a snippet [start, end).

Inheritance
System.Object
MatchRange
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.CloudSearch.v1.Data
Assembly: Google.Apis.CloudSearch.v1.dll
Syntax
public class MatchRange : IDirectResponseSchema

Properties

End

End of the match in the snippet.

Declaration
[JsonProperty("end")]
public virtual int? End { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

ETag

The ETag of the item.

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

Start

Starting position of the match in the snippet.

Declaration
[JsonProperty("start")]
public virtual int? Start { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

Implements

IDirectResponseSchema
Back to top