Пример #1
0
 /// <summary>
 /// Gets the service application details.
 /// </summary>
 /// <param name="appName">Name of the application.</param>
 public void GetServiceAppDetails(string appName)
 {
     this.TryExecute(
         () =>
     {
         IServiceAppClient client = this.factory.Create <IServiceAppClient>();
         this.View.SelectServiceApp(client.GetServiceApp(appName));
     },
         true);
 }