Aracılığıyla paylaş


SmtpClient.Host Özellik

Tanım

SMTP işlemleri için kullanılan konağın adını veya IP adresini alır veya ayarlar.

public:
 property System::String ^ Host { System::String ^ get(); void set(System::String ^ value); };
public string? Host { get; set; }
public string Host { get; set; }
member this.Host : string with get, set
Public Property Host As String

Özellik Değeri

String SMTP işlemleri için kullanılacak bilgisayarın adını veya IP adresini içeren.

Özel durumlar

Bir küme işlemi için belirtilen değer şeklindedir null.

Bir küme işlemi için belirtilen değer ("") değerine eşittir Empty .

E-posta gönderilirken bu özelliğin değerini değiştiremezsiniz.

Örnekler

Aşağıdaki kod örneği, bir uygulama yapılandırma dosyasında belirtilen konağı ve bağlantı noktasını kullanarak e-posta iletisi göndermeyi gösterir.

static void CreateTestMessage4( String^ server )
{
   MailAddress^ from = gcnew MailAddress( L"ben@contoso.com" );
   MailAddress^ to = gcnew MailAddress( L"Jane@contoso.com" );
   MailMessage^ message = gcnew MailMessage( from,to );
   message->Subject = L"Using the SmtpClient class.";
   message->Body = L"Using this feature, you can send an email message from an application very easily.";
   SmtpClient^ client = gcnew SmtpClient( server );
   Console::WriteLine( L"Sending an email message to {0} by using SMTP host {1} port {2}.", to, client->Host, client->Port );
   client->Send( message );
   client->~SmtpClient();
}
public static void CreateTestMessage4(string server)
{
    MailAddress from = new MailAddress("ben@contoso.com");
    MailAddress to = new MailAddress("Jane@contoso.com");
    MailMessage message = new MailMessage(from, to);
    message.Subject = "Using the SmtpClient class.";
    message.Body = @"Using this feature, you can send an email message from an application very easily.";
    SmtpClient client = new SmtpClient(server);
    Console.WriteLine("Sending an email message to {0} by using SMTP host {1} port {2}.",
         to.ToString(), client.Host, client.Port);

    try
    {
        client.Send(message);
    }
    catch (Exception ex)
    {
        Console.WriteLine("Exception caught in CreateTestMessage4(): {0}",
            ex.ToString());
    }
}

Açıklamalar

Özelliğin Host değeri oluşturucular veya uygulama veya makine yapılandırma dosyası kullanılarak da ayarlanabilir. Daha fazla bilgi için bkz <. mailSettings> Öğesi (Ağ Ayarları).

Bu özellik kullanılarak bilgi belirtilirse, bu bilgiler yapılandırma dosyası ayarlarını geçersiz kılar.

Şunlara uygulanır

Ayrıca bkz.