This is probably late but might help someone else.
You simply need to change the index name as Paul said.
if (ExamineManager.Instance.TryGetIndex("InternalIndex", out var index))
{
var searcher = index.GetSearcher();
var query = searcher.CreateQuery("content")....
how to include unpublished nodes in examine search
is there any way to include unpublished nodes in results that returned from examine search ?
Hi You can do this by using the internal index rather than the external one.
Hi paul
do you you know any way to get unpublished node content by internal examine ?
This is probably late but might help someone else.
You simply need to change the index name as Paul said.
is working on a reply...