2

Windowsフォームからapp.configの次の設定に保存しようとしています

<system.net>
  <mailSettings>
    <smtp from="restore@example.com">
     <network host="smtp" port="25" defaultCredentials="true"/>
    </smtp>
  </mailSettings>
</system.net>

以下のコードを使用して設定しようとしていますが、構成が読み取り専用であるというエラーが表示されます。

private void SaveMailSettings()
{
    var smtpSection = ConfigurationManager.GetSection("system.net/mailSettings/smtp") as SmtpSection;
    try
    {
        if (smtpSection == null) return;
        smtpSection.Network.Host = txtSmtpHost.Text;
        smtpSection.Network.Port = Convert.ToInt32(txtSmtpPort.Text);
        smtpSection.From = txtSmtpFrom.Text;
        if (smtpSection.Network.UserName != null) smtpSection.Network.UserName = txtSmtpUserName.Text;
        if (smtpSection.Network.Password != null) smtpSection.Network.Password = txtSmtpPassword.Text;
        Logger.Log(string.Format("Host: {0}, Port: {1}, From: {2}, UserName: {3}, Password: {4}", smtpSection.Network.Host, smtpSection.Network.Port, smtpSection.Network.UserName, smtpSection.Network.Password), "INFO");
     }
     catch (Exception ex)
     {
         Logger.Log(ex.Message, "ERROR:");
     }
}

App.Config ファイルの mailSettings を更新する方法はありますか?

4

1 に答える 1