65

これは私のweb.configメール設定です:

<system.net>
    <mailSettings>
      <smtp deliveryMethod="Network" from="smthg@smthg.net">
        <network defaultCredentials="true" host="localhost" port="587" userName="smthg@smthg.net" password="123456"/>
      </smtp>
    </mailSettings>
  </system.net>

そして、これが私が値を読み取ろうとする方法ですweb.config

 var smtp = new System.Net.Mail.SmtpClient();
 var credential = new System.Net.Configuration.SmtpSection().Network;

 string strHost = smtp.Host;
 int port = smtp.Port;
 string strUserName = credential.UserName;
 string strFromPass = credential.Password;

ただし、資格情報は常に null です。これらの値にアクセスするにはどうすればよいですか?

4

7 に答える 7

113

答えが受け入れられていないため、他のどれも私のために働いていませんでした:

using System.Configuration;
using System.Net.Configuration;
// snip...
var smtpSection = (SmtpSection)ConfigurationManager.GetSection("system.net/mailSettings/smtp");
string username = smtpSection.Network.UserName;
于 2013-11-13T17:45:59.927 に答える
38

ConfigurationManagerを使用して手動で値を取得する必要はありません。をインスタンス化するだけSmtpClientで十分です。

SmtpClient client = new SmtpClient();

これはMSDNが言うことです:

このコンストラクターは、アプリケーションまたはコンピューターの構成ファイルの設定を使用して、新しい SmtpClient の Host、Credentials、および Port プロパティを初期化します。

Scott Guthrie は、それについて少し前に小さな記事を書きました。

于 2014-02-20T08:41:19.417 に答える
8

構成を使用して、次の行:

var smtp = new System.Net.Mail.SmtpClient();

構成された値が使用されます。再度アクセスして割り当てる必要はありません。


値についてはnull、構成値に誤ってアクセスしようとしています。SmtpSection構成から読み取るのではなく、空を作成しているだけです。

var smtpSection = (SmtpSection)ConfigurationManager.GetSection("<the section name>");
var credentials == smtpSection.Network;
于 2012-11-19T11:13:52.580 に答える
3
            //You can access the network credentials in the following way.
            //Read the SmtpClient section from the config file    
            var smtp = new System.Net.Mail.SmtpClient();
            //Cast the newtwork credentials in to the NetworkCredential class and use it .
            var credential = (System.Net.NetworkCredential)smtp.Credentials;
            string strHost = smtp.Host;
            int port = smtp.Port;
            string strUserName = credential.UserName;
            string strFromPass = credential.Password;
于 2013-12-09T07:33:20.143 に答える
2

defaultCredentials="true" が設定されている場合、資格情報を使用していないため、資格情報が null になると思います。

.Send メソッドを呼び出すと、メールは送信されますか?

そう

これは私の Web 構成のメール設定です。

<system.net>
   <mailSettings>
      <smtp deliveryMethod="Network" from="smthg@smthg.net">
         <network defaultCredentials="false" host="localhost" port="587"
            userName="smthg@smthg.net" password="123456"/>
      </smtp>
   </mailSettings>
</system.net>

そしてこれはcsです

SmtpClient smtpClient = new SmtpClient();

string smtpDetails =
    @"
    DeliveryMethod = {0},
    Host = {1},
    PickupDirectoryLocation = {2},
    Port = {3},
    TargetName = {4},
    UseDefaultCredentials = {5}";

Console.WriteLine(smtpDetails,
    smtpClient.DeliveryMethod.ToString(),
    smtpClient.Host,
    smtpClient.PickupDirectoryLocation == null
        ? "Not Set"
        : smtpClient.PickupDirectoryLocation.ToString(),
    smtpClient.Port,
    smtpClient.TargetName,
    smtpClient.UseDefaultCredentials.ToString)
);
于 2012-11-19T11:19:19.543 に答える
0

アプリケーションでSystem.Netへの参照があることを確認してください

于 2013-04-01T15:33:52.190 に答える