${IS6_ShowBusStopParameters_Title}
${IS6_ShowBusStopParameters_Description}
/// <summary>${IS6_ShowBusStopService_method_ProcessAsync_D}</summary> /// <param name="parameters">${IS6_ShowBusStopService_method_ProcessAsync_param_Parameters}</param> /// <param name="state">${IS6_ShowBusStopService_method_ProcessAsync_param_state}</param> public void ProcessAsync(ShowBusStopParameters parameters, object state) { if (parameters == null) throw new ArgumentNullException(ExceptionStrings.ArgumentIsNull); if (string.IsNullOrEmpty(this.Url)) throw new InvalidOperationException(ExceptionStrings.InvalidUrl); base.SubmitRequest(base.Url + "/path.ashx?", GetParameters(parameters), new EventHandler<RequestEventArgs>(request_Completed), state, false); }
private Dictionary<string, string> GetParameters(ShowBusStopParameters parameters) { Dictionary<string, string> dictionary = new Dictionary<string, string>(); string method = "ShowBusStop"; dictionary.Add("method", method); dictionary.Add("map", parameters.MapName); dictionary.Add("id", parameters.ID.ToString()); return dictionary; }
/// <summary>${IS6_ShowBusStopService_method_ProcessAsync_D}</summary> /// <overloads>${IS6_ShowBusStopService_method_ProcessAsync_overloads_D}</overloads> public void ProcessAsync(ShowBusStopParameters parameters) { ProcessAsync(parameters, null); }