Soap.InvokeRegistry.ObjectConvertOptions

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

ObjectConvertOptions = (ocoDontPrefixNode,
ocoDontSerializeProps,
ocoDontPutTypeAttr);

C++

enum DECLSPEC_DENUM ObjectConvertOptions : unsigned char { ocoDontPrefixNode, ocoDontSerializeProps, ocoDontPutTypeAttr };

Properties

Type Visibility Source Unit Parent
enum public
Soap.InvokeRegistry.pas
Soap.InvokeRegistry.hpp
Soap.InvokeRegistry Soap.InvokeRegistry

Description

ObjectConvertOptions and TObjectConvertOptions are flags that customize how to convert a remotable object to or from its SOAP representation.

TObjectConvertOptions is a set of ObjectConvertOptions values. ObjectConvertOptions values are flags that can be supplied when customizing the conversion between an object and its SOAP representation.



Value Meaning

ocoDontPrefixNode

When set, the SOAP representation does not include a namespace prefix on node names.

ocoDontSerializeProps

When set, the SOAP representation does not include any representation for the published properties of the remotable object.

ocoDontPutTypeAttr

When set, nodes do not include an xsi:type attribute that indicates their type.