| Visual Basic (Declaration) | |
|---|---|
Public ReadOnly Property FullContentType As String | |
| Visual Basic (Usage) | Copy Code |
|---|---|
Dim instance As MimeAttachmentStream Dim value As String value = instance.FullContentType | |
| C# | |
|---|---|
public string FullContentType {get;} | |
| Managed Extensions for C++ | |
|---|---|
public: __property string* get_FullContentType(); | |
Property Value
A string representing the Content-Type of the message or part, including all sub-types.The "Content-Type" header notifies receiving mail clients of the type of data contained within the MIME part, enabling them to properly handle the data.
If the part is not a MIME part or the message is not a MIME message, this property returns an empty string.
Target Platforms: Microsoft .NET Framework 2.0
Copy Code