Is there any way to read the settings in the IndexBuilderExtender extension?
I want to build a custom IndexBuilderExtender that will behave differently based on an index build settings:
but did not find any way to read settings on the doc being processed (in the public override void ExtendDocument(IndexDocument doc)).
I’ve tried something like:
if (!(this is IIndexBuilder build))
{
return;
}
But this is always true.
Is there any other way to do it?