Class SearchFieldCount
Count information of fields in the search index for filtering, searching and sorting
Inheritance
SearchFieldCount
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
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
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
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
Methods
Declaration
public static SearchFieldCount FromJson(string data)
Parameters
Returns