SmtpClient.DeliveryMethod Property

Definition

Specifies how outgoing email messages will be handled.

public:
 property System::Net::Mail::SmtpDeliveryMethod DeliveryMethod { System::Net::Mail::SmtpDeliveryMethod get(); void set(System::Net::Mail::SmtpDeliveryMethod value); };
public System.Net.Mail.SmtpDeliveryMethod DeliveryMethod { get; set; }
member this.DeliveryMethod : System.Net.Mail.SmtpDeliveryMethod with get, set
Public Property DeliveryMethod As SmtpDeliveryMethod

Property Value

An SmtpDeliveryMethod that indicates how email messages are delivered.

Remarks

Delivery methods include:

  • An SMTP server.

  • Moving the email into the pickup directory for IIS, which then delivers the message.

  • Moving the email to a directory specified by PickupDirectoryLocation for later delivery by another application.

The default value for this property can also be set in a machine or application configuration file. Any changes made to the PickupDirectoryLocation property override the configuration file settings.

Applies to

See also