====== ThinkGeo.MapSuite.MapSuiteGeocoder.IPAddressMatchingPlugin ====== {{section>upgrade_map_suite_to_10.0}} This class is the derived class of the MatchingPlugin class for matching IP addresses. ===== Inheritance Hierarchy ===== *System.Object *ThinkGeo.MapSuite.MapSuiteGeocoder.MatchingPlugin ***ThinkGeo.MapSuite.MapSuiteGeocoder.IPAddressMatchingPlugin** ===== Members Summary ===== ==== Public Constructors ==== ** {{wiki:PublicMethod.gif|}} IPAddressMatchingPlugin() ** * //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.IPAddressMatchingPlugin#IPAddressMatchingPlugin.28.29// == Parameters ==
** {{wiki:PublicMethod.gif|}} IPAddressMatchingPlugin(String) ** * //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.IPAddressMatchingPlugin#IPAddressMatchingPlugin.28String.29// == Parameters == * //dataPath// * Type:String * Description:The path of the Geocoder data folder.
==== Protected Constructors ==== ==== Public Methods ==== ** {{wiki:PublicMethod.gif|}} Dispose() ** * //Releases all resources used by the IPAddressMatchingPlugin.// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.MapSuiteGeocoder.IPAddressMatchingPlugin#Dispose.28.29// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} Match(String) ** * //This method matches the source text and returns a collection of GeocoderMatch. This method is the concrete wrapper for MatchCore. It firstly formalizes the input sourceText, gets the formalized results and matches them using MatchCore one by one, then returns all of the results within a collection.// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.MapSuiteGeocoder.IPAddressMatchingPlugin#Match.28String.29// == Return Value == * Type:Collection<[[ThinkGeo.MapSuite.MapSuiteGeocoder.GeocoderMatch|GeocoderMatch]]> * Description:A collection of GeocoderMatch. == Parameters == * //sourceText// * Type:String * Description:The source text to match.
** {{wiki:PublicMethod.gif|}} Open() ** * //This method opens the MatchingPlugin for use. This method is the concrete wrapper for OpenCore.// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.MapSuiteGeocoder.IPAddressMatchingPlugin#Open.28.29// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} Close() ** * //This method closes the MatchingPlugin. This method is the concrete wrapper for CloseCore.// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.MapSuiteGeocoder.IPAddressMatchingPlugin#Close.28.29// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} ToString() ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.MapSuiteGeocoder.IPAddressMatchingPlugin#ToString.28.29// == Return Value == * Type:String * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} Equals(Object) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.MapSuiteGeocoder.IPAddressMatchingPlugin#Equals.28Object.29// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //obj// * Type:Object * Description:N/A
** {{wiki:PublicMethod.gif|}} GetHashCode() ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.MapSuiteGeocoder.IPAddressMatchingPlugin#GetHashCode.28.29// == Return Value == * Type:Int32 * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} GetType() ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.MapSuiteGeocoder.IPAddressMatchingPlugin#GetType.28.29// == Return Value == * Type:Type * Description:N/A == Parameters ==
==== Protected Methods ==== ** {{wiki:ProtectedMethod.gif|}} OpenCore() ** * //This method opens all index files for the IPAddressMatchingPlugin.// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.MapSuiteGeocoder.IPAddressMatchingPlugin#OpenCore.28.29// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} CloseCore() ** * //This method closes all index files for the IPAddressMatchingPlugin.// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.MapSuiteGeocoder.IPAddressMatchingPlugin#CloseCore.28.29// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} MatchCore(String) ** * //This method matches source text in the corresponding IP index files.// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.MapSuiteGeocoder.IPAddressMatchingPlugin#MatchCore.28String.29// == Return Value == * Type:Collection<[[ThinkGeo.MapSuite.MapSuiteGeocoder.GeocoderMatch|GeocoderMatch]]> * Description:The collection of GeocoderMatch objects. == Parameters == * //sourceText// * Type:String * Description:The source text to match.
** {{wiki:ProtectedMethod.gif|}} FormalizeCore(String) ** * //This method formalizes the source text to get possible street addresses.// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.MapSuiteGeocoder.IPAddressMatchingPlugin#FormalizeCore.28String.29// == Return Value == * Type:Collection * Description:The collection containing possible street addresses. == Parameters == * //sourceText// * Type:String * Description:The source text to formalize.
** {{wiki:ProtectedMethod.gif|}} Finalize() ** * //This method is automatically called after an object becomes inaccessible, unless the object has been exempted from finalization by a call to SuppressFinalize.// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.MapSuiteGeocoder.IPAddressMatchingPlugin#Finalize.28.29// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} Formalize(String) ** * //This method formalizes the source text. This method is the concrete wrapper of FormalizeCore.// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.MapSuiteGeocoder.IPAddressMatchingPlugin#Formalize.28String.29// == Return Value == * Type:Collection * Description:The collection of formalized strings. == Parameters == * //sourceText// * Type:String * Description:The source text to formalize.
** {{wiki:ProtectedMethod.gif|}} oxM=(GeocoderMatch) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //geocoderMatch// * Type:[[ThinkGeo.MapSuite.MapSuiteGeocoder.GeocoderMatch|GeocoderMatch]] * Description:N/A
** {{wiki:ProtectedMethod.gif|}} MemberwiseClone() ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.MapSuiteGeocoder.IPAddressMatchingPlugin#MemberwiseClone.28.29// == Return Value == * Type:Object * Description:N/A == Parameters ==
==== Public Properties ==== ** {{wiki:PublicProperty.gif|}} RankingMultiplier ** This property is the ranking multipier for GeocoderMatch. == Remarks == For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.MapSuiteGeocoder.IPAddressMatchingPlugin#RankingMultiplier == Return Value == * Type:Int32 ==== Protected Properties ==== ==== Public Events ====