London Dev Meetup Rescheduled! Due to unavoidable reasons, the event has been moved to 21st May. Speakers remain the same—any changes will be communicated. Seats are limited—register here to secure your spot!

Class FacetsResponseParser<T>

Inheritance
System.Object
FacetsResponseParser<T>
Implements
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: SolrNet.Impl.ResponseParsers
Assembly: Solrnet.dll
Version: 13.30.0
Syntax
public class FacetsResponseParser<T> : ISolrResponseParser<T>
Type Parameters
Name Description
T

Constructors

FacetsResponseParser()

Declaration
public FacetsResponseParser()

Methods

KV<K, V>(K, V)

Declaration
public KeyValuePair<K, V> KV<K, V>(K key, V value)
Parameters
Type Name Description
K key
V value
Returns
Type Description
System.Collections.Generic.KeyValuePair<K, V>
Type Parameters
Name Description
K
V

Parse(XmlDocument, SolrQueryResults<T>)

Declaration
public void Parse(XmlDocument xml, SolrQueryResults<T> results)
Parameters
Type Name Description
System.Xml.XmlDocument xml
SolrQueryResults<T> results

ParseDateFacetingNode(XmlNode)

Declaration
public DateFacetingResult ParseDateFacetingNode(XmlNode node)
Parameters
Type Name Description
System.Xml.XmlNode node
Returns
Type Description
DateFacetingResult

ParseFacetDates(XmlNode)

Declaration
public IDictionary<string, DateFacetingResult> ParseFacetDates(XmlNode node)
Parameters
Type Name Description
System.Xml.XmlNode node
Returns
Type Description
System.Collections.Generic.IDictionary<System.String, DateFacetingResult>

ParseFacetFields(XmlNode)

Declaration
public IDictionary<string, ICollection<KeyValuePair<string, int>>> ParseFacetFields(XmlNode node)
Parameters
Type Name Description
System.Xml.XmlNode node
Returns
Type Description
System.Collections.Generic.IDictionary<System.String, System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<System.String, System.Int32>>>

ParseFacetQueries(XmlNode)

Declaration
public IDictionary<string, int> ParseFacetQueries(XmlNode node)
Parameters
Type Name Description
System.Xml.XmlNode node
Returns
Type Description
System.Collections.Generic.IDictionary<System.String, System.Int32>

Implements