User Tools

Site Tools


thinkgeo.mapsuite.mapsuitegeocoder.matchingplugin

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
thinkgeo.mapsuite.mapsuitegeocoder.matchingplugin [2015/08/20 03:08]
127.0.0.1 external edit
thinkgeo.mapsuite.mapsuitegeocoder.matchingplugin [2017/03/16 21:59] (current)
Line 1: Line 1:
 ====== ThinkGeo.MapSuite.MapSuiteGeocoder.MatchingPlugin ====== ====== ThinkGeo.MapSuite.MapSuiteGeocoder.MatchingPlugin ======
  
 +{{section>​upgrade_map_suite_to_10.0}}
  
- 
-<!-- Class --> 
 This class is the abstract class encapsulating matching operations. The MatchingPlugIn class is the key class in the Geocoder. It formalizes the source text using GeocoderFormalizer,​ tries to match in some kinds of datasets and returns a MatchResult object. MatchingPlugIn can work independently or can be combined to work together with others to accomplish complicated matching requirements. This class is the abstract class encapsulating matching operations. The MatchingPlugIn class is the key class in the Geocoder. It formalizes the source text using GeocoderFormalizer,​ tries to match in some kinds of datasets and returns a MatchResult object. MatchingPlugIn can work independently or can be combined to work together with others to accomplish complicated matching requirements.
-=== Remarks === 
-For the most updated Info for this topic, please check it here:<a href="​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.MapSuiteGeocoder.MatchingPlugin"​ target="​_blank">​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.MapSuiteGeocoder.MatchingPlugin</​a>​ 
 ===== Inheritance Hierarchy ===== ===== Inheritance Hierarchy =====
-*System.Object +  ​*System.Object 
-**[[ThinkGeo.MapSuite.MapSuiteGeocoder.MatchingPlugin]] +    ***ThinkGeo.MapSuite.MapSuiteGeocoder.MatchingPlugin** 
-***[[ThinkGeo.MapSuite.MapSuiteGeocoder.CensusBlockDbfMatchingPlugin]] +      *[[ThinkGeo.MapSuite.MapSuiteGeocoder.DbfMatchingPlugin]] 
-***[[ThinkGeo.MapSuite.MapSuiteGeocoder.CensusBlockGroupDbfMatchingPlugin]] +      *[[ThinkGeo.MapSuite.MapSuiteGeocoder.IPAddressMatchingPlugin]] 
-***[[ThinkGeo.MapSuite.MapSuiteGeocoder.CensusTractsDbfMatchingPlugin]] +      *[[ThinkGeo.MapSuite.MapSuiteGeocoder.PostcodeDbfMatchingPlugin]] 
-***[[ThinkGeo.MapSuite.MapSuiteGeocoder.CityDbfMatchingPlugin]] +      *[[ThinkGeo.MapSuite.MapSuiteGeocoder.CoordinatesMatchingPlugin]] 
-***[[ThinkGeo.MapSuite.MapSuiteGeocoder.CoordinatesMatchingPlugin]] +      *[[ThinkGeo.MapSuite.MapSuiteGeocoder.StreetMatchingPlugin]]
-***[[ThinkGeo.MapSuite.MapSuiteGeocoder.CountyDbfMatchingPlugin]] +
-***[[ThinkGeo.MapSuite.MapSuiteGeocoder.DbfMatchingPlugin]] +
-***[[ThinkGeo.MapSuite.MapSuiteGeocoder.IPAddressMatchingPlugin]] +
-***[[ThinkGeo.MapSuite.MapSuiteGeocoder.PostcodeDbfMatchingPlugin]] +
-***[[ThinkGeo.MapSuite.MapSuiteGeocoder.SoundexDbfMatchingPlugin]] +
-***[[ThinkGeo.MapSuite.MapSuiteGeocoder.StateDbfMatchingPlugin]] +
-***[[ThinkGeo.MapSuite.MapSuiteGeocoder.StreetMatchingPlugin]] +
-***[[ThinkGeo.MapSuite.MapSuiteGeocoder.ZipDbfMatchingPlugin]]+
 ===== Members Summary ===== ===== Members Summary =====
 ==== Public Constructors ==== ==== Public Constructors ====
-^ Name ^ Parameters ^ DeclaringType ^ Summary ^ 
- 
 ==== Protected Constructors ==== ==== Protected Constructors ====
-^ Name ^ Parameters ^ DeclaringType ^ Summary ^ +** {{wiki:​ProtectedMethod.gif|}} MatchingPlugin() ​**
-{{wiki:​ProtectedMethod.gif|Protected Method}}[[#MatchingPlugin()|MatchingPlugin]] ​  ​| ​   |    | This is the constructor of this class. ​  |+
  
 +  * //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.MatchingPlugin#​MatchingPlugin.28.29//​
 +== Parameters ==
 +<div newline></​div>​
 ==== Public Methods ==== ==== Public Methods ====
-^ Name ^ Parameters ^ DeclaringType ^ Summary ^ +** {{wiki:​PublicMethod.gif|}} Match(String) ​**
-{{wiki:​PublicMethod.gif|Public Method}}[[#​Close()|Close]] ​  ​| ​   |    | This method closes the MatchingPlugin. This method is the concrete wrapper for CloseCore. ​  | +
-| {{wiki:​PublicMethod.gif|Public Method}}[[#​Equals(Object)|Equals]] ​  | Object ​  | Object ​  ​| ​   | +
-| {{wiki:​PublicMethod.gif|Public Method}}[[#​GetHashCode()|GetHashCode]] ​  ​| ​   | Object ​  ​| ​   | +
-| {{wiki:​PublicMethod.gif|Public Method}}[[#​GetType()|GetType]] ​  ​| ​   | Object ​  ​| ​   | +
-| {{wiki:​PublicMethod.gif|Public Method}}[[#Match(String)|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. ​  | +
-| {{wiki:​PublicMethod.gif|Public Method}}[[#​Open()|Open]] ​  ​| ​   |    | This method opens the MatchingPlugin for use. This method is the concrete wrapper for OpenCore. ​  | +
-| {{wiki:​PublicMethod.gif|Public Method}}[[#​ToString()|ToString]] ​  ​| ​   | Object ​  ​| ​   |+
  
 +  * //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.MatchingPlugin#​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.
 +
 +<div newline></​div>​
 +** {{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.MatchingPlugin#​Open.28.29//​
 +
 +== Return Value ==
 +  * Type:Void
 +  * Description:​N/​A
 +
 +== Parameters ==
 +<div newline></​div>​
 +** {{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.MatchingPlugin#​Close.28.29//​
 +
 +== Return Value ==
 +  * Type:Void
 +  * Description:​N/​A
 +
 +== Parameters ==
 +<div newline></​div>​
 +** {{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.MatchingPlugin#​ToString.28.29//​
 +
 +== Return Value ==
 +  * Type:String
 +  * Description:​N/​A
 +
 +== Parameters ==
 +<div newline></​div>​
 +** {{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.MatchingPlugin#​Equals.28Object.29//​
 +
 +== Return Value ==
 +  * Type:​Boolean
 +  * Description:​N/​A
 +
 +== Parameters ==
 +  * //obj//
 +    * Type:Object
 +    * Description:​N/​A
 +
 +<div newline></​div>​
 +** {{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.MatchingPlugin#​GetHashCode.28.29//​
 +
 +== Return Value ==
 +  * Type:Int32
 +  * Description:​N/​A
 +
 +== Parameters ==
 +<div newline></​div>​
 +** {{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.MatchingPlugin#​GetType.28.29//​
 +
 +== Return Value ==
 +  * Type:Type
 +  * Description:​N/​A
 +
 +== Parameters ==
 +<div newline></​div>​
 ==== Protected Methods ==== ==== Protected Methods ====
-^ Name ^ Parameters ^ DeclaringType ^ Summary ^ +** {{wiki:​ProtectedMethod.gif|}} MatchCore(String) ​**
-{{wiki:​ProtectedMethod.gif|Protected Method}}{{wiki:​Static.gif|Static Member}}[[#​CleanSourceText(String,​ IEnumerable<​String>​)|CleanSourceText]] ​  | String, IEnumerable<​String> ​  ​| ​   | Cleans all special symbols present in the source text.   | +
-| {{wiki:​ProtectedMethod.gif|Protected Method}}[[#​CloseCore()|CloseCore]] ​  ​| ​   |    | This method closes the MatchingPlugin. ​  | +
-| {{wiki:​ProtectedMethod.gif|Protected Method}}[[#​Finalize()|Finalize]] ​  ​| ​   | Object ​  ​| ​   | +
-| {{wiki:​ProtectedMethod.gif|Protected Method}}[[#​Formalize(String)|Formalize]] ​  | String ​  ​| ​   | This method formalizes the source text. This method is the concrete wrapper of FormalizeCore. ​  | +
-| {{wiki:​ProtectedMethod.gif|Protected Method}}[[#​FormalizeCore(String)|FormalizeCore]] ​  | String ​  ​| ​   | This method formalizes the source text.   | +
-| {{wiki:​ProtectedMethod.gif|Protected Method}}[[#MatchCore(String)|MatchCore]] ​  | String ​  ​| ​   | This method is an abstract method used to match source text. It will match the source text and return the result within a collection of GeocoderMatch. ​  | +
-| {{wiki:​ProtectedMethod.gif|Protected Method}}[[#​MemberwiseClone()|MemberwiseClone]] ​  ​| ​   | Object ​  ​| ​   | +
-| {{wiki:​ProtectedMethod.gif|Protected Method}}[[#​OpenCore()|OpenCore]] ​  ​| ​   |    | This method opens the MatchingPlugin for use.   |+
  
-==== Public Properties ==== +  * //This method is an abstract method used to match source text. It will match the source text and return the result within a collection of GeocoderMatch.//​ 
-^ Name ^ Return ^ DeclaringType ^ Summary ^ +== Remarks ​== 
-| {{wiki:PublicProperty.gif|Public Property}}[[#RankingMultiplier|RankingMultiplier]] ​  | Int32   ​| ​   | This property is the ranking multipier for GeocoderMatch  |+  * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.MapSuiteGeocoder.MatchingPlugin#MatchCore.28String.29//​
  
-==== Protected Properties ==== +== Return Value == 
-^ Name ^ Return ^ DeclaringType ^ Summary ^+  * Type:​Collection<​[[ThinkGeo.MapSuite.MapSuiteGeocoder.GeocoderMatch|GeocoderMatch]]>​ 
 +  * Description:​A collection of GeocoderMatch.
  
-==== Public Events ==== +== Parameters ​== 
-^ Name ^ Event Arguments ^ DeclaringType ^ Summary ^+  * //​sourceText//​ 
 +    * Type:​String 
 +    * Description:​The source text to match.
  
-===== Public Constructors ===== +<div newline></div
-===== Protected Constructors ===== +** {{wiki:​ProtectedMethod.gif|}} Formalize(String) **
-==== MatchingPlugin() ==== +
-This is the constructor of this class. +
-=== Remarks === +
-For the most updated Info for this topic, please check it here:<a href="​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.MapSuiteGeocoder.MatchingPlugin#​MatchingPlugin.28.29"​ target="​_blank"​>http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.MapSuiteGeocoder.MatchingPlugin#​MatchingPlugin.28.29</a+
-=== Parameters === +
-^  Name ^  Type ^  Description ^+
  
-[[#​Protected Constructors|Go Back]] +  * //This method ​formalizes ​the source text. This method is the concrete wrapper ​of FormalizeCore.// 
-===== Public Methods ===== +== Remarks == 
-==== Close() ==== +  * //For the most updated Info for this topic, please check it here:​http:​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.MapSuiteGeocoder.MatchingPlugin#​Formalize.28String.29//
-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:<a href="http://wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.MapSuiteGeocoder.MatchingPlugin#​Close.28.29" target="​_blank">​http:​//wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.MapSuiteGeocoder.MatchingPlugin#​Close.28.29</​a>​ +
-=== Return Value === +
-^ Return Type ^ Description ^ +
-| Void<!-- System.Void --> ​  ​| ​   |+
  
-=== Parameters === +== Return Value == 
-^  Name ^  ​Type ​ ​Description ​^+  ​Type:​Collection<​String>​ 
 +  Description:The collection of formalized strings.
  
-<!-- ThinkGeo.MapSuite.MapSuiteGeocoder.MatchingPlugin --> +== Parameters ​== 
-[[#Public Methods|Go Back]] +  ​* ​//sourceText// 
-==== Equals(Object) ​==== +    * Type:String 
-=== Remarks === +    ​* ​Description:The source text to formalize.
-For the most updated Info for this topic, please check it here:<a href="​http:​//wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.MapSuiteGeocoder.MatchingPlugin#​Equals.28Object.29"​ target="​_blank">​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.MapSuiteGeocoder.MatchingPlugin#​Equals.28Object.29</​a>​ +
-=== Return Value === +
-^ Return Type ^ Description ​+
-| Boolean<​!-- System.Boolean --> ​  ​| ​   |+
  
-=== Parameters === +<div newline></​div>​ 
-^  Name ^  Type ^  Description ^ +** {{wiki:​ProtectedMethod.gif|}} FormalizeCore(String) **
-| obj   | Object<​!-- System.Object --> ​  ​| ​   ​|+
  
-<!-- System.Object --> +  * //This method formalizes the source text.// 
-[[#Public Methods|Go Back]] +== Remarks == 
-==== GetHashCode() ==== +  * //For the most updated Info for this topic, please check it here:​http:​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.MapSuiteGeocoder.MatchingPlugin#​FormalizeCore.28String.29//
-=== Remarks ​=== +
-For the most updated Info for this topic, please check it here:<a href="http://wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.MapSuiteGeocoder.MatchingPlugin#​GetHashCode.28.29" target="​_blank">​http:​//wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.MapSuiteGeocoder.MatchingPlugin#​GetHashCode.28.29</​a>​ +
-=== Return Value === +
-^ Return Type ^ Description ^ +
-| Int32<​!-- System.Int32 --> ​  ​| ​   |+
  
-=== Parameters === +== Return Value == 
-^  Name ^  ​Type ​ ​Description ​^+  ​Type:​Collection<​String>​ 
 +  Description:The collection of formalized strings.
  
-<!-- System.Object --> +== Parameters ​== 
-[[#Public Methods|Go Back]] +  ​* ​//sourceText// 
-==== GetType() ​==== +    * Type:String 
-=== Remarks === +    ​* ​Description:The source text to formalize.
-For the most updated Info for this topic, please check it here:<a href="​http:​//wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.MapSuiteGeocoder.MatchingPlugin#​GetType.28.29"​ target="​_blank">​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.MapSuiteGeocoder.MatchingPlugin#​GetType.28.29</​a>​ +
-=== Return Value === +
-^ Return Type ^ Description ​+
-| Type<!-- System.Type --> ​  ​| ​   |+
  
-=== Parameters === +<div newline></​div>​ 
-^  Name ^  Type ^  Description ^+** {{wiki:​ProtectedMethod.gif|}} OpenCore() **
  
-<!-- System.Object --> +  * //This method ​opens the MatchingPlugin ​for use.// 
-[[#Public Methods|Go Back]] +== Remarks == 
-==== Match(String) ==== +  * //For the most updated Info for this topic, please check it here:​http:​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.MapSuiteGeocoder.MatchingPlugin#​OpenCore.28.29//
-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:<a href="http://wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.MapSuiteGeocoder.MatchingPlugin#​Match.28String.29" target="​_blank">​http:​//wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.MapSuiteGeocoder.MatchingPlugin#​Match.28String.29</​a>​ +
-=== Return Value === +
-^ Return Type ^ Description ^ +
-| Collection<​[[ThinkGeo.MapSuite.MapSuiteGeocoder.GeocoderMatch|GeocoderMatch]]><​!-- System.Collections.ObjectModel.Collection{ThinkGeo.MapSuite.MapSuiteGeocoder.GeocoderMatch} --> ​  | A collection of GeocoderMatch. ​  |+
  
-=== Parameters === +== Return Value == 
-^  Name ^  ​Type ​ ​Description ​+  ​Type:Void 
-| sourceText ​  | String<​!-- System.String --> ​  | The source text to match. ​  |+  Description:N/A
  
-<!-- ThinkGeo.MapSuite.MapSuiteGeocoder.MatchingPlugin --> +== Parameters ​== 
-[[#Public Methods|Go Back]] +<div newline></div
-==== Open() ​==== +** {{wiki:​ProtectedMethod.gif|}} CloseCore() **
-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:<a href="​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.MapSuiteGeocoder.MatchingPlugin#​Open.28.29"​ target="​_blank"​>http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.MapSuiteGeocoder.MatchingPlugin#​Open.28.29</a+
-=== Return Value === +
-^ Return Type ^ Description ^ +
-| Void<!-- System.Void --> ​  ​| ​   ​|+
  
-=== Parameters === +  * //This method closes the MatchingPlugin.//​ 
-^  Name ^  Type ^  Description ^+== Remarks ​== 
 +  ​* //For the most updated Info for this topic, please check it here:​http:​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.MapSuiteGeocoder.MatchingPlugin#​CloseCore.28.29//​
  
-<!-- ThinkGeo.MapSuite.MapSuiteGeocoder.MatchingPlugin --> +== Return Value == 
-[[#Public Methods|Go Back]] +  ​* ​Type:Void 
-==== ToString() ==== +  * Description:N/A
-=== Remarks === +
-For the most updated Info for this topic, please check it here:<a href="​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.MapSuiteGeocoder.MatchingPlugin#​ToString.28.29"​ target="​_blank">​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.MapSuiteGeocoder.MatchingPlugin#​ToString.28.29</​a>​ +
-=== Return Value === +
-^ Return ​Type Description ​+
-| String<​!-- System.String --> ​  ​| ​   |+
  
-=== Parameters ​=== +== Parameters == 
-^  Name ^  Type ^  Description ^+<div newline></​div>​ 
 +** {{wiki:​ProtectedMethod.gif|}} oxM=(GeocoderMatch) **
  
-<!-- System.Object --> +  * //N/A// 
-[[#Public Methods|Go Back]] +== Remarks == 
-===== Protected Methods ===== +  * //N/A//
-==== CleanSourceText(String,​ IEnumerable<​String>​) ==== +
-<!-- static --> +
-Cleans all special symbols present in the source text. +
-=== Remarks ​=== +
-For the most updated Info for this topic, please check it here:<a href=""​ target="​_blank"><​/a> +
-=== Return Value === +
-^ Return Type ^ Description ^ +
-| String<​!-- System.String --> ​  | The clean text with the specified strings removed. ​  |+
  
-=== Parameters === +== Return Value == 
-^  Name ^  ​Type ​ ​Description ​+  ​Type:Void 
-| sourceText ​  | String<​!-- System.String --> ​  | The source text need to formalize. ​  | +  Description:N/A
-| stringsToRemove ​  | IEnumerable<​String><​!-- System.Collections.Generic.IEnumerable{System.String} --> ​  | The strings that need to be cleaned. ​  |+
  
-<!-- ThinkGeo.MapSuite.MapSuiteGeocoder.MatchingPlugin --> +== Parameters ​== 
-[[#​Protected Methods|Go Back]] +  ​* ​//geocoderMatch// 
-==== CloseCore() ​==== +    * Type:[[ThinkGeo.MapSuite.MapSuiteGeocoder.GeocoderMatch|GeocoderMatch]] 
-This method closes the MatchingPlugin. +    ​* ​Description:N/A
-=== Remarks === +
-For the most updated Info for this topic, please check it here:<a href="​http:​//wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.MapSuiteGeocoder.MatchingPlugin#​CloseCore.28.29"​ target="​_blank">​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.MapSuiteGeocoder.MatchingPlugin#​CloseCore.28.29</​a>​ +
-=== Return Value === +
-^ Return Type ^ Description ​+
-| Void<!-- System.Void --> ​  ​| ​   |+
  
-=== Parameters === +<div newline></​div>​ 
-^  Name ^  Type ^  Description ^+** {{wiki:​ProtectedMethod.gif|}} Finalize() **
  
-<!-- ThinkGeo.MapSuite.MapSuiteGeocoder.MatchingPlugin --> +  * //N/A// 
-[[#​Protected Methods|Go Back]] +== Remarks == 
-==== Finalize() ==== +  * //For the most updated Info for this topic, please check it here:​http:​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.MapSuiteGeocoder.MatchingPlugin#​Finalize.28.29//​
-=== Remarks ​=== +
-For the most updated Info for this topic, please check it here:<a href="http://wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.MapSuiteGeocoder.MatchingPlugin#​Finalize.28.29" target="​_blank">​http:​//wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.MapSuiteGeocoder.MatchingPlugin#​Finalize.28.29</​a>​ +
-=== Return Value === +
-^ Return Type ^ Description ^ +
-| Void<!-- System.Void --> ​  ​| ​   |+
  
-=== Parameters === +== Return Value == 
-^  Name ^  ​Type ​ ​Description ​^+  ​Type:Void 
 +  Description:N/A
  
-<!-- System.Object --> +== Parameters ​== 
-[[#​Protected Methods|Go Back]] +<div newline></div
-==== Formalize(String) ​==== +** {{wiki:​ProtectedMethod.gif|}MemberwiseClone() **
-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:<a href="​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.MapSuiteGeocoder.MatchingPlugin#​Formalize.28String.29"​ target="​_blank"​>http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.MapSuiteGeocoder.MatchingPlugin#​Formalize.28String.29</a+
-=== Return Value === +
-^ Return Type ^ Description ^ +
-| Collection<​String><​!-- System.Collections.ObjectModel.Collection{System.String--> ​  | The collection of formalized strings. ​  |+
  
-=== Parameters === +  * //N/A// 
- Name ^  Type ^  Description ^ +== Remarks ​== 
-| sourceText ​  | String<​!-- System.String --> ​  | The source text to formalize  |+  ​* //For the most updated Info for this topic, please check it here:​http:​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.MapSuiteGeocoder.MatchingPlugin#​MemberwiseClone.28.29//​
  
-<!-- ThinkGeo.MapSuite.MapSuiteGeocoder.MatchingPlugin --> +== Return Value == 
-[[#​Protected Methods|Go Back]] +  ​* ​Type:Object 
-==== FormalizeCore(String) ==== +  * Description:N/A
-This method formalizes the source text. +
-=== Remarks === +
-For the most updated Info for this topic, please check it here:<a href="​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.MapSuiteGeocoder.MatchingPlugin#​FormalizeCore.28String.29"​ target="​_blank">​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.MapSuiteGeocoder.MatchingPlugin#​FormalizeCore.28String.29</​a>​ +
-=== Return Value === +
-^ Return ​Type Description ​+
-| Collection<​String><​!-- System.Collections.ObjectModel.Collection{System.String} --> ​  | The collection of formalized strings. ​  |+
  
-=== Parameters ​=== +== Parameters == 
-^  Name ^  Type ^  Description ^ +<div newline></​div>​ 
-sourceText ​  | String<!-- System.String ​--  | The source text to formalize. ​  |+** {{wiki:​ProtectedMethod.gif|}}{{wiki:​Static.gif|}} CleanSourceText(String,​IEnumerable<​String>​) **
  
-<!-- ThinkGeo.MapSuite.MapSuiteGeocoder.MatchingPlugin --> +  * //Cleans all special symbols present in the source text.// 
-[[#​Protected Methods|Go Back]] +== Remarks == 
-==== MatchCore(String) ==== +  * //For the most updated Info for this topic, please check it here://
-This method is an abstract method used to match source text. It will match the source text and return the result within a collection of GeocoderMatch+
-=== Remarks ​=== +
-For the most updated Info for this topic, please check it here:<a href="​http://wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.MapSuiteGeocoder.MatchingPlugin#​MatchCore.28String.29"​ target="​_blank">​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.MapSuiteGeocoder.MatchingPlugin#​MatchCore.28String.29</​a>​ +
-=== Return Value === +
-^ Return Type ^ Description ^ +
-| Collection<​[[ThinkGeo.MapSuite.MapSuiteGeocoder.GeocoderMatch|GeocoderMatch]]><​!-- System.Collections.ObjectModel.Collection{ThinkGeo.MapSuite.MapSuiteGeocoder.GeocoderMatch} --> ​  | A collection of GeocoderMatch. ​  |+
  
-=== Parameters === +== Return Value == 
-^  Name ^  ​Type ​ ​Description ​+  ​Type:String 
-| sourceText ​  | String<​!-- System.String --> ​  ​| ​The source ​text to match  |+  Description:The clean text with the specified strings removed.
  
-<!-- ThinkGeo.MapSuite.MapSuiteGeocoder.MatchingPlugin --> +== Parameters ​== 
-[[#​Protected Methods|Go Back]] +  ​* ​//sourceText// 
-==== MemberwiseClone() ​==== +    * Type:String 
-=== Remarks === +    ​* ​Description:The source text need to formalize.
-For the most updated Info for this topic, please check it here:<a href="​http:​//wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.MapSuiteGeocoder.MatchingPlugin#​MemberwiseClone.28.29"​ target="​_blank">​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.MapSuiteGeocoder.MatchingPlugin#​MemberwiseClone.28.29</​a>​ +
-=== Return Value === +
-^ Return Type ^ Description ​+
-| Object<​!-- System.Object --> ​  ​| ​   |+
  
-=== Parameters === +  * //​stringsToRemove//​ 
-^  Name ^  ​Type ^  ​Description ​^+    ​* ​Type:​IEnumerable<​String>​ 
 +    * Description:The strings that need to be cleaned.
  
-<!-- System.Object --> +<div newline></div> 
-[[#​Protected Methods|Go Back]] +** {{wiki:​ProtectedMethod.gif|}}{{wiki:Static.gif|}} pBM=(GeocoderMatch) **
-==== OpenCore() ==== +
-This method opens the MatchingPlugin for use. +
-=== Remarks === +
-For the most updated Info for this topic, please check it here:<a href="​http:/​/wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.MapSuiteGeocoder.MatchingPlugin#​OpenCore.28.29"​ target="​_blank">​http://wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.MapSuiteGeocoder.MatchingPlugin#​OpenCore.28.29</​a>​ +
-=== Return Value === +
-^ Return Type ^ Description ^ +
-| Void<!-- System.Void --> ​  ​| ​   |+
  
-=== Parameters ​=== +  * //N/A// 
-^  Name ^  ​Type ​ ​Description ​^+== Remarks ​== 
 +  * //N/A// 
 + 
 +== Return Value == 
 +  ​Type:Void 
 +  Description:N/A 
 + 
 +== Parameters == 
 +  * //​geocoderMatch//​ 
 +    * Type:​[[ThinkGeo.MapSuite.MapSuiteGeocoder.GeocoderMatch|GeocoderMatch]] 
 +    * Description:​N/​A 
 + 
 +<div newline></​div>​ 
 +==== Public Properties ==== 
 +** {{wiki:​PublicProperty.gif|}} RankingMultiplier **
  
-<!-- ThinkGeo.MapSuite.MapSuiteGeocoder.MatchingPlugin --> 
-[[#​Protected Methods|Go Back]] 
-===== Public Properties ===== 
-==== RankingMultiplier ==== 
 This property is the ranking multipier for GeocoderMatch. This property is the ranking multipier for GeocoderMatch.
-=== Remarks ​=== +== Remarks == 
-For the most updated Info for this topic, please check it here:<a href="http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.MapSuiteGeocoder.MatchingPlugin#​RankingMultiplier" target="​_blank">​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.MapSuiteGeocoder.MatchingPlugin#​RankingMultiplier</​a>​ +For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.MapSuiteGeocoder.MatchingPlugin#​RankingMultiplier 
-=== Return Value === +== Return Value == 
-^ Return ​Type +  ​* ​Type:Int32
-| Int32<​!-- System.Int32 --> ​  |+
  
-<!-- ThinkGeo.MapSuite.MapSuiteGeocoder.MatchingPlugin --> +==== Protected Properties ==== 
-[[#Public Properties|Go Back]] +==== Public Events ====
-===== Protected Properties ​===== +
-===== Public Events ====+
-__NOTOC__ +
-[[Category:​MapSuiteGeocoder]] +
-[[Category:​ThinkGeo.MapSuite.MapSuiteGeocoder]] +
-[[Category:​UpdateDocumentation]]+
  
thinkgeo.mapsuite.mapsuitegeocoder.matchingplugin.1440040131.txt.gz · Last modified: 2015/09/21 07:03 (external edit)