class Poco::Net::NullPartHandler

Overview

A very special PartHandler that simply discards all data. Moreā€¦

#include <NullPartHandler.h>

class NullPartHandler: public Poco::Net::PartHandler
{
public:
    // methods

    virtual
    void
    handlePart(
        const MessageHeader& header,
        std::istream& stream
        );
};

Inherited Members

public:
    // methods

    virtual
    void
    handlePart(
        const MessageHeader& header,
        std::istream& stream
        ) = 0;

Detailed Documentation

A very special PartHandler that simply discards all data.

Construction

~NullPartHandler()

Destroys the NullPartHandler.

Methods

virtual
void
handlePart(
    const MessageHeader& header,
    std::istream& stream
    )

Reads and discards all data from the stream.