Esempio n. 1
0
 public Project() {
     Configuration = new ClientConfiguration();
     NotificationSettings = new Dictionary<string, NotificationSettings>();
     PromotedTabs = new HashSet<string>();
     DeleteBotDataEnabled = true;
     Data = new DataDictionary();
 }
Esempio n. 2
0
 public Project() {
     ApiKeys = new HashSet<string>();
     Configuration = new ClientConfiguration();
     NotificationSettings = new Dictionary<string, NotificationSettings>();
     PromotedTabs = new HashSet<string>();
 }
 public ConfigurationUpdatedEventArgs(ClientConfiguration configuration) {
     Configuration = configuration;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="T:System.ComponentModel.AsyncCompletedEventArgs" /> class.
 /// </summary>
 /// <param name="configuration">The configuration response.</param>
 /// <param name="error">Any error that occurred during the asynchronous operation.</param>
 /// <param name="cancelled">A value indicating whether the asynchronous operation was canceled.</param>
 /// <param name="userState">
 /// The optional user-supplied state object passed to the
 /// <see cref="M:System.ComponentModel.BackgroundWorker.RunWorkerAsync(System.Object)" /> method.
 /// </param>
 public ConfigurationUpdatedEventArgs(ClientConfiguration configuration, Exception error, bool cancelled, object userState)
     : base(error, cancelled, userState) {
     _configuration = configuration;
 }