Soap.InvokeRegistry.TObjectConvertOptions
Delphi
type TObjectConvertOptions = set of ObjectConvertOptions;
C++
typedef System::Set<ObjectConvertOptions, ObjectConvertOptions::ocoDontPrefixNode, ObjectConvertOptions::ocoDontPutTypeAttr> TObjectConvertOptions;
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
set typedef |
public | Soap.InvokeRegistry.pas Soap.InvokeRegistry.hpp |
Soap.InvokeRegistry | Soap.InvokeRegistry |
Description
TObjectConvertOptions and ObjectConvertOptions are flags that customize the way 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. |