${IS6_ShowRoutingResult_Title}

${IS6_ShowRoutingResult_Description}

 /// <summary>${IS6_ShowRoutingEventArgs_constructor_D}</summary>
 public ShowRoutingEventArgs(ShowRoutingResult result, string originResult, object token)
     : base(token)
 {
     Result = result;
     OriginResult = originResult;
 }
        private void request_Completed(object sender, RequestEventArgs e)
        {
            JsonObject json = (JsonObject)JsonObject.Parse(e.Result);

            ShowRoutingResult result = ShowRoutingResult.FromJson(json);
            LastResult = result;
            ShowRoutingEventArgs args = new ShowRoutingEventArgs(result, e.Result, e.UserState);
            OnProcessCompleted(args);
        }