Exemple #1
0
 public EmailSender(IOptions <EmailOptions> options)
 {
     emailOptions = options.Value;
 }
Exemple #2
0
 public EmailSender(IOptions <EmailOptions> options)
 {
     emailOptions = options.Value; //load anything from appsettings.json, add a class
                                   //use IOptions and Dependency Injection to get the value
 }