AnyPlace.MainPage.getSearchLocation C# (CSharp) 메소드

getSearchLocation() 개인적인 메소드

private getSearchLocation ( GeoCoordinate location ) : void
location GeoCoordinate
리턴 void
        private void getSearchLocation(GeoCoordinate location)
        {
            _mygeocodequerylocation = new GeocodeQuery
            {
                SearchTerm = location.ToString(),
                GeoCoordinate = new GeoCoordinate(_myLatitude, _myLongitude)
            };
            _mygeocodequerylocation.QueryCompleted += MygeocodequerylocationSearch_QueryCompleted;
            _mygeocodequerylocation.QueryAsync();
        }
MainPage