0

アプリ構成ファイル名にアクセスする必要がありますApp.config

    MailSettingsSectionGroup mailSettings =App.GetSectionGroup("system.net/mailSettings") as MailSettingsSectionGroup;

 if (mailSettings != null)
            {
                 FromMail = mailSettings.Smtp.Network.UserName;
                 password = mailSettings.Smtp.Network.Password;
            }

アプリ構成ファイル

 <system.net>
    <mailSettings>
      <smtp from="abc@email.com">
        <network host="smtp.server.com" port="587" userName="abc@email.com" password="password" enableSsl="true" />
      </smtp>
    </mailSettings>
  </system.net>

このようにアクセスしているとき。次のコンテキストでアプリが存在しないことを示しています。助けてください。

4

2 に答える 2

0

Properties.Settings クラスを使用して app.config ファイルにアクセスしてみてください。Windows フォームのアプリケーション設定を確認してください。

于 2013-07-03T12:12:48.830 に答える