Пример #1
0
 public Geo.Search.Result Search()
 {
     var cm = new Geo.Search.Command();
     return this.Search(cm);
 }
Пример #2
0
 public Geo.Search.Result Search(String lat, String @long, String query, String ip, String granularity, String accuracy, String max_results, String contained_within, String attribute_street_address, String callback)
 {
     var cm = new Geo.Search.Command();
     cm.lat = lat;
     cm.@long = @long;
     cm.query = query;
     cm.ip = ip;
     cm.granularity = granularity;
     cm.accuracy = accuracy;
     cm.max_results = max_results;
     cm.contained_within = contained_within;
     cm.attribute_street_address = attribute_street_address;
     cm.callback = callback;
     return this.Search(cm);
 }
Пример #3
0
 public Geo.Search.Result[] Search(Geo.Search.Command command)
 {
     return(_ApiEndpoints._Client.GetResult <Geo.Search.Command, Geo.Search.Result[]>(command));
 }