SourcePro® 2025.1 |
SourcePro® API Reference Guide |
Represents the Content-Transfer-Encoding header of a MIME part. More...
#include <rw/mime/RWMimeContentTransferEncodingHeader.h>
Public Member Functions | |
RWMimeContentTransferEncodingHeader (const RWCString &encoding) | |
RWMimeContentTransferEncodingHeader (const RWMimeContentTransferEncodingHeader &second) | |
RWMimeContentTransferEncodingHeader (const RWMimeHeader &second) | |
RWMimeContentTransferEncodingHeader (void) | |
virtual | ~RWMimeContentTransferEncodingHeader (void) |
RWCString | getEncoding (void) const |
RWMimeContentTransferEncodingHeader & | operator= (const RWMimeContentTransferEncodingHeader &second) |
void | setEncoding (const RWCString &encoding) |
![]() | |
RWMimeHeader (const RWCString &label) | |
RWMimeHeader (const RWMimeHeader &second) | |
RWMimeHeader (void) | |
virtual | ~RWMimeHeader (void) |
RWCString | asString (void) const |
void | fromString (const RWCString &headerString) |
RWCString | getLabel (void) const |
RWMimeHeader & | operator= (const RWMimeHeader &second) |
![]() | |
bool | isValid (void) const |
Static Public Attributes | |
static const RWCString | Label |
Protected Member Functions | |
RWMimeContentTransferEncodingHeaderImp & | body (void) const |
virtual bool | checkLabel (const RWCString &label) const |
![]() | |
RWMimeHeaderImp & | body (void) const |
![]() | |
RWHandleBase (const RWHandleBase &second) | |
RWHandleBase (RWBodyBase *body) | |
RWHandleBase (RWStaticCtor) | |
RWHandleBase (void) | |
~RWHandleBase (void) | |
RWBodyBase & | body (void) const |
RWHandleBase & | operator= (const RWHandleBase &second) |
Additional Inherited Members | |
![]() | |
bool | operator!= (const RWHandleBase &lhs, const RWHandleBase &rhs) |
RWMimeContentTransferEncodingHeader represents the Content-Transfer-Encoding header of a MIME part. The Content-Transfer-Encoding header identifies whether the body of the part has been encoded and/or the character set of the body. A value of 7bit
, 8bit
, or binary
indicates that the body has not been encoded, and the data is 7-bit US-ASCII, 8-bit US-ASCII, or binary, respectively. A value of base64
or quoted-printable
indicates that the body has been encoded. Since both base64
encoding and quoted-printable
encoding result in 7-bit US-ASCII encoded messages, either of these values also indicates that the body contains 7-bit US-ASCII data.
An instance of this class is a handle to a private, reference-counted body.
RWMimeContentTransferEncodingHeader::RWMimeContentTransferEncodingHeader | ( | void | ) |
Default constructor. Constructs a header with the label "Content-Transfer-Encoding"
and an empty value.
|
explicit |
Constructs a header with the label "Content-Transfer-Encoding"
and the value encoding. Does not validate encoding. The RWCString should contain 7-bit US-ASCII data.
RWMimeContentTransferEncodingHeader::RWMimeContentTransferEncodingHeader | ( | const RWMimeContentTransferEncodingHeader & | second | ) |
Copy constructor. Constructs a new handle to the body second refers to.
RWMimeContentTransferEncodingHeader::RWMimeContentTransferEncodingHeader | ( | const RWMimeHeader & | second | ) |
Conversion constructor. Constructs a new handle to the body second refers to. Throws RWMimeError if second does not have the label "Content-Transfer-Encoding"
.
|
virtual |
Destructor.
|
protected |
Returns a reference to the underlying implementation.
|
protectedvirtual |
Returns true
if label matches "Content-Transfer-Encoding"
. Otherwise, returns false
. The comparison is case-insensitive. The RWCString should contain 7-bit US-ASCII data.
Reimplemented from RWMimeHeader.
RWCString RWMimeContentTransferEncodingHeader::getEncoding | ( | void | ) | const |
Returns the encoding value of this header. The RWCString should contain 7-bit US-ASCII data.
RWMimeContentTransferEncodingHeader & RWMimeContentTransferEncodingHeader::operator= | ( | const RWMimeContentTransferEncodingHeader & | second | ) |
Assignment operator. Makes self a handle identical to second.
void RWMimeContentTransferEncodingHeader::setEncoding | ( | const RWCString & | encoding | ) |
Sets the encoding value of this header. Does not validate encoding. The RWCString should contain 7-bit US-ASCII data.
Copyright © 2025 Rogue Wave Software, Inc., a Perforce company. All Rights Reserved. |