AcManager.Tools.Helpers.TracksLocator.TryToLocateAsync C# (CSharp) Method

TryToLocateAsync() private method

private TryToLocateAsync ( [ country, [ city ) : Task
country [
city [
return Task
        public static Task<GeoTagsEntry> TryToLocateAsync([CanBeNull] string country, [CanBeNull] string city) {
            return TryToLocateAsync(string.IsNullOrWhiteSpace(country) ? city :
                    string.IsNullOrWhiteSpace(city) ? country : $"{city.Trim()},{country.Trim()}");
        }

Same methods

TracksLocator::TryToLocateAsync ( [ address ) : Task
TracksLocator