| Visual Basic (Declaration) | |
|---|---|
Public ReadOnly Property Response As SmtpResult | |
| Visual Basic (Usage) | Copy Code |
|---|---|
Dim instance As SmtpEventArgs Dim value As SmtpResult value = instance.Response | |
| C# | |
|---|---|
public SmtpResult Response {get;} | |
| Managed Extensions for C++ | |
|---|---|
public: __property SmtpResult* get_Response(); | |
| C++/CLI | |
|---|---|
public: property SmtpResult^ Response { SmtpResult^ get(); } | |
Property Value
An SmtpResult object, which describes the message sent.This property returns an SmtpResult object, which encapsulates data about the message sent. This data will include a byte count of all data sent (SmtpResult.Length) and a list of all recipients that the SMTP server responded successfully to (SmtpResult.Recipients).
Use this property to check the results of an email message sent asynchronously.
Target Platforms: Microsoft .NET Framework 2.0
Copy Code