| Visual Basic (Declaration) | |
|---|---|
Public ReadOnly Property Header As String | |
| Visual Basic (Usage) | Copy Code |
|---|---|
Dim instance As MessagePartStream Dim value As String value = instance.Header | |
| C# | |
|---|---|
public string Header {get;} | |
| Managed Extensions for C++ | |
|---|---|
public: __property string* get_Header(); | |
Property Value
A CRLF-delimited string of headers for the part.Normally, headers for a part is handled by the object and is made accessible as a high-level property. For example, the "Content-Type:" header is accessible through the Type property. This property returns a list of all MIME headers for the part.
Target Platforms: Microsoft .NET Framework 2.0
Copy Code