====== ThinkGeo.MapSuite.MapSuiteGeocoder.DbfMatchingPlugin ======
{{section>upgrade_map_suite_to_10.0}}
This class encapsulates the matching operations in a DBF dataset. This class provides functions for creating and adding records and matching for DBF index files. The DBF file could contain one key column whose column name starts with "ID_" and additional columns whose column names start with "DT_". Each DBF file should also contain two columns named "BB_CX" and "BB_CY", which represent the longitude and latitude. If there is bounding box information, it should consist of four columns: "BB_ULX", "BB_ULY", "BB_LRX", "BB_LRY" representing upper left X, upper left Y, lower right X and lower right Y. To take advantange of binary searching, records should be sorted before insertion into the DBF file.
===== Inheritance Hierarchy =====
*System.Object
*ThinkGeo.MapSuite.MapSuiteGeocoder.MatchingPlugin
***ThinkGeo.MapSuite.MapSuiteGeocoder.DbfMatchingPlugin**
*[[ThinkGeo.MapSuite.MapSuiteGeocoder.CensusBlockDbfMatchingPlugin]]
*[[ThinkGeo.MapSuite.MapSuiteGeocoder.CensusBlockGroupDbfMatchingPlugin]]
*[[ThinkGeo.MapSuite.MapSuiteGeocoder.CensusTractsDbfMatchingPlugin]]
*[[ThinkGeo.MapSuite.MapSuiteGeocoder.CountyDbfMatchingPlugin]]
*[[ThinkGeo.MapSuite.MapSuiteGeocoder.SoundexDbfMatchingPlugin]]
*[[ThinkGeo.MapSuite.MapSuiteGeocoder.CityDbfMatchingPlugin]]
*[[ThinkGeo.MapSuite.MapSuiteGeocoder.StateDbfMatchingPlugin]]
*[[ThinkGeo.MapSuite.MapSuiteGeocoder.ZipDbfMatchingPlugin]]
===== Members Summary =====
==== Public Constructors ====
** {{wiki:PublicMethod.gif|}} DbfMatchingPlugin() **
* //This is the constructor of this class.//
== Remarks ==
* //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.MapSuiteGeocoder.DbfMatchingPlugin#DbfMatchingPlugin.28.29//
== Parameters ==
** {{wiki:PublicMethod.gif|}} DbfMatchingPlugin(String) **
* //This is the construcor of this class.//
== Remarks ==
* //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.MapSuiteGeocoder.DbfMatchingPlugin#DbfMatchingPlugin.28String.29//
== Parameters ==
* //pathFileName//
* Type:String
* Description:The path and file name of the DBF file to be used for Geocoding.
** {{wiki:PublicMethod.gif|}} DbfMatchingPlugin(String,DbfMatchingPluginReadWriteMode) **
* //This is the construcor of this class.//
== Remarks ==
* //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.MapSuiteGeocoder.DbfMatchingPlugin#DbfMatchingPlugin.28String.2C_DbfMatchingPluginReadWriteMode.29//
== Parameters ==
* //pathFileName//
* Type:String
* Description:The path and file name of the index.
* //readWriteMode//
* Type:[[ThinkGeo.MapSuite.MapSuiteGeocoder.DbfMatchingPluginReadWriteMode|DbfMatchingPluginReadWriteMode]]
* Description:The read/write mode for the DBF file.
==== Protected Constructors ====
==== Public Methods ====
** {{wiki:PublicMethod.gif|}} GetRecord(Int32) **
* //This method gets a record by record index from the DBF file.//
== Remarks ==
* //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.MapSuiteGeocoder.DbfMatchingPlugin#GetRecord.28Int32.29//
== Return Value ==
* Type:Dictionary
* Description:The record value.
== Parameters ==
* //recordNumber//
* Type:Int32
* Description:This parameter is the record number.
** {{wiki:PublicMethod.gif|}} GetRecords(Int32,Int32) **
* //This method gets records by using the specified range.//
== Remarks ==
* //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.MapSuiteGeocoder.DbfMatchingPlugin#GetRecords.28Int32.2C_Int32.29//
== Return Value ==
* Type:Collection>
* Description:The collection of record values.
== Parameters ==
* //firstRecordNumber//
* Type:Int32
* Description:This parameter is the first record number to get.
* //count//
* Type:Int32
* Description:This parameter is the record count to return.
** {{wiki:PublicMethod.gif|}} AddRecord(IEnumerable