Hello,
I wrote a custom MatchingPlugin by extending MatchingPlugin and implementing MatchCore, however if I put a breakpoint in the first line of the method, the method is never being called. I'm using the following code to do my geocoding:
UsaGeocoder geocoder = new UsaGeocoder(dataPath, MatchMode.ExactMatch);
geocoder.MatchingPlugins.Add(new MyMatchingPlugin());
geocoder.Open();
Collection<geocodermatch>() matches = geocoder.Match(address);
Thanks for your help,
.Ryan.