Web.HTTPApp.TWebActionItem.ProducerContent

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property ProducerContent: TComponent read FProducerContent write SetProducerContent;

C++

__property System::Classes::TComponent* ProducerContent = {read=FProducerContent, write=SetProducerContent};

Properties

Type Visibility Source Unit Parent
property published
Web.HTTPApp.pas
Web.HTTPApp.hpp
Web.HTTPApp TWebActionItem

Description

Specifies a content producer that generates the content of response messages when the action item executes.

This property is identical to Producer except for the type of content producer. ProducerContent is used when the producer is of type IProduceContent instead of TCustomContentProducer. In the latter case, the property Producer is set instead. Note that Producer and ProducerContent are mutually exclusive; if one is set, the other must not be.

See Also