SmtpClient.Port Propriedade

Definição

Obtém ou define a porta usada para transações de SMTP.Gets or sets the port used for SMTP transactions.

public:
 property int Port { int get(); void set(int value); };
public int Port { get; set; }
member this.Port : int with get, set
Public Property Port As Integer

Valor da propriedade

Int32

Um Int32 que contém o número da porta no host SMTP.An Int32 that contains the port number on the SMTP host. O valor padrão é 25.The default value is 25.

Exceções

O valor especificado para uma operação de definição é menor ou igual a zero.The value specified for a set operation is less than or equal to zero.

Não será possível alterar o valor dessa propriedade quando um email estiver sendo enviado.You cannot change the value of this property when an email is being sent.

Exemplos

O exemplo de código a seguir demonstra o envio de uma mensagem de email usando o host e a porta especificados em um arquivo de configuração de aplicativo.The following code example demonstrates sending an email message by using the host and port specified in an application configuration file.

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());
  }
}

Comentários

O valor da Port propriedade também pode ser definido usando construtores ou o arquivo de configuração do aplicativo ou da máquina.The value of the Port property can also be set using constructors or the application or machine configuration file. Para obter mais informações sobre como usar arquivos de configuração, consulte < > elemento MailSettings (configurações de rede).For more information about using configuration files, see <mailSettings> Element (Network Settings). Se as informações forem especificadas usando essa propriedade, essas informações substituirão as configurações do arquivo de configuração.If information is specified using this property, this information overrides the configuration file settings.

Aplica-se a

Confira também