DataHubServicesAddin.LocatorHub.LocatorHub.Match C# (CSharp) Method

Match() private method

private Match ( string LocatorName, string Matcher, string Query, bool inFuzzy, string inPickedItem, int inReturnCoordinateSystem, string inCacheID ) : MatchResult
LocatorName string
Matcher string
Query string
inFuzzy bool
inPickedItem string
inReturnCoordinateSystem int
inCacheID string
return MatchResult
        public MatchResult Match(string LocatorName, string Matcher, string Query, bool inFuzzy, string inPickedItem, int inReturnCoordinateSystem, string inCacheID) {
            object[] results = this.Invoke("Match", new object[] {
                        LocatorName,
                        Matcher,
                        Query,
                        inFuzzy,
                        inPickedItem,
                        inReturnCoordinateSystem,
                        inCacheID});
            return ((MatchResult)(results[0]));
        }