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 HighlightingResponseParser<T>

Inheritance
System.Object
HighlightingResponseParser<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 HighlightingResponseParser<T> : ISolrResponseParser<T>
Type Parameters
Name Description
T

Constructors

HighlightingResponseParser(ISolrDocumentIndexer<T>)

Declaration
public HighlightingResponseParser(ISolrDocumentIndexer<T> docIndexer)
Parameters
Type Name Description
ISolrDocumentIndexer<T> docIndexer

Methods

Parse(XmlDocument, SolrQueryResults<T>)

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

ParseHighlighting(IEnumerable<T>, XmlNode)

Declaration
public IDictionary<T, IDictionary<string, ICollection<string>>> ParseHighlighting(IEnumerable<T> results, XmlNode node)
Parameters
Type Name Description
System.Collections.Generic.IEnumerable<T> results
System.Xml.XmlNode node
Returns
Type Description
System.Collections.Generic.IDictionary<T, System.Collections.Generic.IDictionary<System.String, System.Collections.Generic.ICollection<System.String>>>

ParseHighlightingFields(XmlNodeList)

Declaration
public IDictionary<string, ICollection<string>> ParseHighlightingFields(XmlNodeList nodes)
Parameters
Type Name Description
System.Xml.XmlNodeList nodes
Returns
Type Description
System.Collections.Generic.IDictionary<System.String, System.Collections.Generic.ICollection<System.String>>

Implements