Comment on page
XML-file
XmlSettingsProvider
provides functionality for access to a XML-file with settings.Create settings class.
public class SmtpEmailSettings
{
public string Host { get; set; }
public int Port { get; set; }
}
Create XML file with settings:
<?xml version="1.0" encoding="utf-16"?>
<SmtpEmailSettings xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Host>smtp.example.com</Host>
<Port>25</Port>
</SmtpEmailSettings>
Setup XML-file settings provider:
services.AddConfiguration()
.AddXml<SmtpEmailSettings>("path_to_xml_file");
Last modified 1yr ago