| Visual Basic (Declaration) | |
|---|---|
Public ReadOnly Property ReturnPath As MailAddress | |
| Visual Basic (Usage) | Copy Code |
|---|---|
Dim instance As MessageStream Dim value As MailAddress value = instance.ReturnPath | |
| C# | |
|---|---|
public MailAddress ReturnPath {get;} | |
| Managed Extensions for C++ | |
|---|---|
public: __property MailAddress* get_ReturnPath(); | |
| C++/CLI | |
|---|---|
public: property MailAddress^ ReturnPath { MailAddress^ get(); } | |
Property Value
String value that indicates the return email address from which this message originated.The Return-Path header field is added by the final transport system that delivers the message to its recipient. The field is intended to contain definitive information about the address and route back to the message's originator.
Target Platforms: Microsoft .NET Framework 2.0
Copy Code