ValueFormat Property

Format of data returned or set.

Syntax

ANSI (Cross Platform)
int GetValueFormat();
int SetValueFormat(int iValueFormat); Unicode (Windows) INT GetValueFormat();
INT SetValueFormat(INT iValueFormat);

Possible Values

VF_TEXT(0), 
VF_XML(1),
VF_FULL_XML(2)
@property (nonatomic,readwrite,assign,getter=valueFormat,setter=setValueFormat:) int valueFormat;
- (int)valueFormat;
- (void)setValueFormat:(int)newValueFormat;

Possible Values

VF_TEXT(0), 
VF_XML(1),
VF_FULL_XML(2)
#define PID_SOAP_VALUEFORMAT 69

IPWORKS_EXTERNAL void* IPWORKS_CALL IPWorks_SOAP_Get(void *lpObj, int propid, int arridx, int *lpcbVal, int64 *lpllVal);
IPWORKS_EXTERNAL int IPWORKS_CALL IPWorks_SOAP_Set(void *lpObj, int propid, int arridx, const void *val, int cbVal);

Default Value

1

Remarks

The ValueFormat property specifies the format of the data set or received into/from value properties such as XText, ReturnValue, and the Params properties.

The following are the possible values:

vfText (0)Textual data. Any '<', '>', and '&' characters are escaped to '&lt;', '&gt;', and '&amp;'.
vfXML (1)XML data, not including the enclosing element tags. No escaping is performed for the XML data, but element data (such as element attributes) will be escaped.
vfFullXML (2)Same as vfXML, but including the enclosing element. No escaping is performed for both the XML data and the XML element.

Data Type

Integer

Copyright (c) 2022 /n software inc. - All rights reserved.
IPWorks 2020 C++ Edition - Version 20.0 [Build 8307]