protected override void Indexed(IndexContentContext context, TPart instance) { if (OnIndexed != null) { OnIndexed(context, instance); } }
void IContentHandler.Indexed(IndexContentContext context) { foreach (var filter in Filters.OfType <IContentStorageFilter>()) { filter.Indexed(context); } Indexed(context); }
private void IndexLayout(IndexContentContext context, LayoutPart part) { var layoutShape = _contentPartDisplay.BuildDisplay(part); var layoutHtml = _shapeDisplay.Display(layoutShape); context.DocumentIndex .Add("body", layoutHtml).RemoveTags().Analyze() .Add("format", "html").Store(); }
protected virtual void Indexed(IndexContentContext context) { }
public void Indexing(IndexContentContext context) { }
public void Indexed(IndexContentContext context) { }