Example #1
0
 protected void OnIndexingError(IndexDocumentData doc, Exception exception)
 {
     IndexingError?.Invoke(null, new NodeIndexingErrorEventArgs(doc.NodeId, doc.VersionId, doc.Path, exception));
 }
Example #2
0
 /// <summary>
 /// Raises the <see cref="E:IndexingError"/> event.
 /// </summary>
 /// <param name="e">The <see cref="Examine.IndexingErrorEventArgs"/> instance containing the event data.</param>
 protected virtual void OnIndexingError(IndexingErrorEventArgs e)
 {
     IndexingError?.Invoke(this, e);
 }