| Visual Basic (Declaration) | |
|---|---|
Public ReadOnly Property Parts As Parts | |
| Visual Basic (Usage) | Copy Code |
|---|---|
Dim instance As MessageStream Dim value As Parts value = instance.Parts | |
| C# | |
|---|---|
public Parts Parts {get;} | |
| Managed Extensions for C++ | |
|---|---|
public: __property Parts* get_Parts(); | |
Property Value
A Parts class.The Parts class contains three collections which represent MIME parts. Parts.Simple contains any simple, inline MIME parts (such as MIME text). These objects are represented by MessagePartStreams. Parts.Attachments contains any MIME attachments. These objects are represented by MimeAttahmentStreams. Parts.Complex contains any complex (multi-part) MIME parts. These objects are represented by MessageStreams.
Target Platforms: Microsoft .NET Framework 2.0
Copy Code