Search Results for

    Show / Hide Table of Contents

    Class SearchFieldCount

    Count information of fields in the search index for filtering, searching and sorting

    Inheritance
    object
    SearchFieldCount
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: System.Dynamic.ExpandoObject
    Syntax
    [GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")]
    public class SearchFieldCount

    Properties

    IndexedField

    The number of fields created in the search index to store filter information for a schema.

    Declaration
    [JsonProperty("indexedField", Required = Required.Always)]
    public int IndexedField { get; set; }
    Property Value
    int

    SimpleSearchField

    The number of fields created in the search index to store search information for a schema.

    Declaration
    [JsonProperty("simpleSearchField", Required = Required.Always)]
    public int SimpleSearchField { get; set; }
    Property Value
    int

    SortableField

    The number of fields created in the search index to store sorting information for a schema.

    Declaration
    [JsonProperty("sortableField", Required = Required.Always)]
    public int SortableField { get; set; }
    Property Value
    int

    Methods

    FromJson(string)

    Declaration
    public static SearchFieldCount FromJson(string data)
    Parameters
    string data

    Returns
    SearchFieldCount

    ToJson()

    Declaration
    public string ToJson()
    Returns
    string

    Back to top Generated by DocFX