Ejemplo n.º 1
0
 /// <summary>
 /// Calls the server to immediately refresh the performance graphs
 /// </summary>
 public void SendGraphRefresh()
 {
     this.TryExecute(
         () =>
     {
         IAnalyticsClient client = this.factory.Create <IAnalyticsClient>();
         client.RequestPerformanceRefresh();
     },
         null,
         true);
 }