コード例 #1
0
ファイル: Reference.cs プロジェクト: dblock/sncore
 public TransitState[] GetStatesByCountryName(string ticket, string name, ServiceQueryOptions options) {
     object[] results = this.Invoke("GetStatesByCountryName", new object[] {
                 ticket,
                 name,
                 options});
     return ((TransitState[])(results[0]));
 }
コード例 #2
0
ファイル: Reference.cs プロジェクト: dblock/sncore
 /// <remarks/>
 public void GetStatesAsync(string ticket, ServiceQueryOptions options) {
     this.GetStatesAsync(ticket, options, null);
 }
コード例 #3
0
ファイル: Reference.cs プロジェクト: dblock/sncore
 /// <remarks/>
 public void GetStatesByCountryIdAsync(string ticket, int id, ServiceQueryOptions options) {
     this.GetStatesByCountryIdAsync(ticket, id, options, null);
 }
コード例 #4
0
ファイル: Reference.cs プロジェクト: dblock/sncore
 /// <remarks/>
 public void GetCitiesByStateIdAsync(string ticket, int id, ServiceQueryOptions options, object userState) {
     if ((this.GetCitiesByStateIdOperationCompleted == null)) {
         this.GetCitiesByStateIdOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetCitiesByStateIdOperationCompleted);
     }
     this.InvokeAsync("GetCitiesByStateId", new object[] {
                 ticket,
                 id,
                 options}, this.GetCitiesByStateIdOperationCompleted, userState);
 }
コード例 #5
0
ファイル: Reference.cs プロジェクト: dblock/sncore
 /// <remarks/>
 public void GetCitiesByLocationAsync(string ticket, string country, string state, ServiceQueryOptions options, object userState) {
     if ((this.GetCitiesByLocationOperationCompleted == null)) {
         this.GetCitiesByLocationOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetCitiesByLocationOperationCompleted);
     }
     this.InvokeAsync("GetCitiesByLocation", new object[] {
                 ticket,
                 country,
                 state,
                 options}, this.GetCitiesByLocationOperationCompleted, userState);
 }
コード例 #6
0
ファイル: Reference.cs プロジェクト: dblock/sncore
 public TransitAccountCity[] GetAccountCities(string ticket, ServiceQueryOptions options) {
     object[] results = this.Invoke("GetAccountCities", new object[] {
                 ticket,
                 options});
     return ((TransitAccountCity[])(results[0]));
 }
コード例 #7
0
ファイル: Reference.cs プロジェクト: dblock/sncore
 public TransitCity[] GetCitiesByStateId(string ticket, int id, ServiceQueryOptions options) {
     object[] results = this.Invoke("GetCitiesByStateId", new object[] {
                 ticket,
                 id,
                 options});
     return ((TransitCity[])(results[0]));
 }
コード例 #8
0
ファイル: Reference.cs プロジェクト: dblock/sncore
 /// <remarks/>
 public void GetNeighborhoodsByCityIdAsync(string ticket, int id, ServiceQueryOptions options) {
     this.GetNeighborhoodsByCityIdAsync(ticket, id, options, null);
 }
コード例 #9
0
ファイル: Reference.cs プロジェクト: dblock/sncore
 public TransitNeighborhood[] SearchNeighborhoodsByName(string ticket, string name, ServiceQueryOptions options) {
     object[] results = this.Invoke("SearchNeighborhoodsByName", new object[] {
                 ticket,
                 name,
                 options});
     return ((TransitNeighborhood[])(results[0]));
 }
コード例 #10
0
ファイル: Reference.cs プロジェクト: dblock/sncore
 /// <remarks/>
 public void GetNeighborhoodsAsync(string ticket, ServiceQueryOptions options, object userState) {
     if ((this.GetNeighborhoodsOperationCompleted == null)) {
         this.GetNeighborhoodsOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetNeighborhoodsOperationCompleted);
     }
     this.InvokeAsync("GetNeighborhoods", new object[] {
                 ticket,
                 options}, this.GetNeighborhoodsOperationCompleted, userState);
 }
コード例 #11
0
ファイル: Reference.cs プロジェクト: dblock/sncore
 public TransitNeighborhood[] GetNeighborhoodsByCityId(string ticket, int id, ServiceQueryOptions options) {
     object[] results = this.Invoke("GetNeighborhoodsByCityId", new object[] {
                 ticket,
                 id,
                 options});
     return ((TransitNeighborhood[])(results[0]));
 }
コード例 #12
0
ファイル: Reference.cs プロジェクト: dblock/sncore
 /// <remarks/>
 public void GetNeighborhoodsAsync(string ticket, ServiceQueryOptions options) {
     this.GetNeighborhoodsAsync(ticket, options, null);
 }
コード例 #13
0
ファイル: Reference.cs プロジェクト: dblock/sncore
 /// <remarks/>
 public void GetNeighborhoodsByLocationAsync(string ticket, string country, string state, string city, ServiceQueryOptions options) {
     this.GetNeighborhoodsByLocationAsync(ticket, country, state, city, options, null);
 }
コード例 #14
0
ファイル: Reference.cs プロジェクト: dblock/sncore
 public TransitNeighborhood[] GetNeighborhoodsByLocation(string ticket, string country, string state, string city, ServiceQueryOptions options) {
     object[] results = this.Invoke("GetNeighborhoodsByLocation", new object[] {
                 ticket,
                 country,
                 state,
                 city,
                 options});
     return ((TransitNeighborhood[])(results[0]));
 }
コード例 #15
0
ファイル: Reference.cs プロジェクト: dblock/sncore
 /// <remarks/>
 public void GetStatesByCountryNameAsync(string ticket, string name, ServiceQueryOptions options) {
     this.GetStatesByCountryNameAsync(ticket, name, options, null);
 }
コード例 #16
0
ファイル: Reference.cs プロジェクト: dblock/sncore
 /// <remarks/>
 public void SearchNeighborhoodsByNameAsync(string ticket, string name, ServiceQueryOptions options) {
     this.SearchNeighborhoodsByNameAsync(ticket, name, options, null);
 }
コード例 #17
0
ファイル: Reference.cs プロジェクト: dblock/sncore
 /// <remarks/>
 public void GetStatesByCountryNameAsync(string ticket, string name, ServiceQueryOptions options, object userState) {
     if ((this.GetStatesByCountryNameOperationCompleted == null)) {
         this.GetStatesByCountryNameOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetStatesByCountryNameOperationCompleted);
     }
     this.InvokeAsync("GetStatesByCountryName", new object[] {
                 ticket,
                 name,
                 options}, this.GetStatesByCountryNameOperationCompleted, userState);
 }
コード例 #18
0
ファイル: Reference.cs プロジェクト: dblock/sncore
 public TransitCountry[] GetCountriesWithDefault(string ticket, string defaultname, ServiceQueryOptions options) {
     object[] results = this.Invoke("GetCountriesWithDefault", new object[] {
                 ticket,
                 defaultname,
                 options});
     return ((TransitCountry[])(results[0]));
 }
コード例 #19
0
ファイル: Reference.cs プロジェクト: dblock/sncore
 /// <remarks/>
 public void GetAccountCitiesAsync(string ticket, ServiceQueryOptions options) {
     this.GetAccountCitiesAsync(ticket, options, null);
 }
コード例 #20
0
ファイル: Reference.cs プロジェクト: dblock/sncore
 /// <remarks/>
 public void GetCountriesWithDefaultAsync(string ticket, string defaultname, ServiceQueryOptions options) {
     this.GetCountriesWithDefaultAsync(ticket, defaultname, options, null);
 }
コード例 #21
0
ファイル: Reference.cs プロジェクト: dblock/sncore
 /// <remarks/>
 public void GetCitiesByStateIdAsync(string ticket, int id, ServiceQueryOptions options) {
     this.GetCitiesByStateIdAsync(ticket, id, options, null);
 }
コード例 #22
0
ファイル: Reference.cs プロジェクト: dblock/sncore
 /// <remarks/>
 public void GetCountriesWithDefaultAsync(string ticket, string defaultname, ServiceQueryOptions options, object userState) {
     if ((this.GetCountriesWithDefaultOperationCompleted == null)) {
         this.GetCountriesWithDefaultOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetCountriesWithDefaultOperationCompleted);
     }
     this.InvokeAsync("GetCountriesWithDefault", new object[] {
                 ticket,
                 defaultname,
                 options}, this.GetCountriesWithDefaultOperationCompleted, userState);
 }
コード例 #23
0
ファイル: Reference.cs プロジェクト: dblock/sncore
 public TransitCity[] GetCitiesByLocation(string ticket, string country, string state, ServiceQueryOptions options) {
     object[] results = this.Invoke("GetCitiesByLocation", new object[] {
                 ticket,
                 country,
                 state,
                 options});
     return ((TransitCity[])(results[0]));
 }
コード例 #24
0
ファイル: Reference.cs プロジェクト: dblock/sncore
 /// <remarks/>
 public void GetCitiesByLocationAsync(string ticket, string country, string state, ServiceQueryOptions options) {
     this.GetCitiesByLocationAsync(ticket, country, state, options, null);
 }