${IS6_ShowBusStopResult_Title}

${IS6_ShowBusStopResult_Description}

        private void request_Completed(object sender, RequestEventArgs e)
        {
            JsonObject jsonArray = (JsonObject)JsonObject.Parse(e.Result);

            ShowBusStopResult result = ShowBusStopResult.FromJson(jsonArray);
            LastResult = result;
            ShowBusStopEventArgs args = new ShowBusStopEventArgs(result, e.Result, e.UserState);
            OnProcessCompleted(args);
        }
 /// <summary>${IS6_ShowBusStopEventArgs_constructor_D}</summary>
 public ShowBusStopEventArgs(ShowBusStopResult result, string originResult, object token)
     : base(token)
 {
     Result = result;
     OriginResult = originResult;
 }