ConfigHelper.cs 785 B

1234567891011121314151617181920212223242526272829
  1. using Microsoft.Extensions.Configuration;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace OASystem.RedisRepository.Config
  8. {
  9. internal class ConfigHelper
  10. {
  11. //internal static T Get<T>(string appSettingsKey, T defaultValue)
  12. //{
  13. // //string text = ConfigurationManager.AppSettings[appSettingsKey];
  14. // //if (string.IsNullOrWhiteSpace(text))
  15. // // return defaultValue;
  16. // //try
  17. // //{
  18. // // var value = Convert.ChangeType(text, typeof(T));
  19. // // return (T)value;
  20. // //}
  21. // //catch
  22. // //{
  23. // // return defaultValue;
  24. // //}
  25. //}
  26. }
  27. }