Represents the destination of the message, consisting of To:, CC:, and BCC: fields.
Assembly: AWSSDK (in AWSSDK.dll) Version: 1.4.10.0 (1.4.10.0)
Syntax
| C# | Visual Basic | Visual C++ |
public class Destination
Public Class Destination
public ref class Destination
Members
| All Members | Constructors | Properties | Methods |
| Member | Description | |
|---|---|---|
| Destination()()()() |
Default constructor for a new Destination object. Callers should use the
properties or fluent setter (With...) methods to initialize this object after creating it.
| |
| Destination(List<(Of <<'(String>)>>)) |
Constructs a new Destination object.
Callers should use the properties or fluent setter (With...) methods to
initialize any additional object members.
| |
| BccAddresses |
The BCC: field(s) of the message.
| |
| CcAddresses |
The CC: field(s) of the message.
| |
| Equals(Object) | (Inherited from Object.) | |
| GetHashCode()()()() |
Serves as a hash function for a particular type.
(Inherited from Object.) | |
| GetType()()()() |
Gets the Type of the current instance.
(Inherited from Object.) | |
| ToAddresses |
The To: field(s) of the message.
| |
| ToString()()()() | (Inherited from Object.) | |
| WithBccAddresses(IEnumerable<(Of <<'(String>)>>)) |
Adds elements to the BccAddresses collection
| |
| WithBccAddresses(array<String>[]()[][]) |
Adds elements to the BccAddresses collection
| |
| WithCcAddresses(IEnumerable<(Of <<'(String>)>>)) |
Adds elements to the CcAddresses collection
| |
| WithCcAddresses(array<String>[]()[][]) |
Adds elements to the CcAddresses collection
| |
| WithToAddresses(IEnumerable<(Of <<'(String>)>>)) |
Adds elements to the ToAddresses collection
| |
| WithToAddresses(array<String>[]()[][]) |
Adds elements to the ToAddresses collection
|