Ejemplo n.º 1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="T:Geocrest.Model.ArcGIS.Tasks.ExecuteCompletedEventArgs" /> class.
 /// </summary>
 /// <param name="resultsJson">The results as a json structure.</param>
 /// <exception cref="T:System.ArgumentNullException">resultsJson</exception>
 public ExecuteCompletedEventArgs(string resultsJson)
 {
     if (string.IsNullOrEmpty(resultsJson))
     {
         throw new ArgumentNullException("resultsJson");
     }
     this.Results = RestHelper.HydrateObjectFromJson <GPResultSet>(resultsJson);
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="T:Geocrest.Model.ArcGIS.Tasks.ExecuteCompletedEventArgs" /> class.
 /// </summary>
 /// <param name="results">The results of the task.</param>
 public ExecuteCompletedEventArgs(GPResultSet results)
 {
     this.Results = results;
 }