Greetings,
I am looking at extending each of the plugins in order to add my own result ranking scores. My plan is to extend from each plugin (ie StreetMatchingPlugin and override the MatchCore method. In that method, I will call base.MatchCore, which will get me all the results, then I want to iterate through each of those and calculate the score. My problem is the text that comes in to that method as the parameter is only the street name, not the rest of the data. I think I can work around this also overriding the FormalizeCore method, adding my original string to the end of the string seperated by a character, then parse it out in the MatchCore method, but this seems like a really big hack. Is there any way for me to get my original search text from within the MatchCore method that I am overlooking.
Thanks,
.Ryan.