コード例 #1
0
 /// <summary>
 /// Reads settings from settings store
 /// </summary>
 private void Load()
 {
     CrmConnections       = GetCrmConnections();
     SelectedConnectionId = _settingsStore.GetGuid(CollectionPath, SelectedConnectionIdPropertyName);
     try
     {
         ConfigurationVersion = _settingsStore.GetString(CollectionPath, SettingsVersionPropertyName);
     }
     catch (Exception ex)
     {
         Logger.WriteLine($"Settings {SettingsVersionPropertyName} not found");
     }
 }
コード例 #2
0
ファイル: Settings.cs プロジェクト: gasyleiss/CrmUpdater
 /// <summary>
 /// Reads settings from settings store
 /// </summary>
 private void Load()
 {
     CrmConnections       = GetCrmConnections();
     SelectedConnectionId = _settingsStore.GetGuid(CollectionPath, SelectedConnectionIdPropertyName);
 }
コード例 #3
0
 /// <summary>
 /// Reads settings from settings store
 /// </summary>
 private void Load()
 {
     CrmConnections       = GetCrmConnections();
     SelectedConnectionId = _settingsStore.GetGuid(CollectionPath, SelectedConnectionIdPropertyName);
     ConfigurationVersion = _settingsStore.GetString(CollectionPath, SettingsVersionPropertyName);
 }