提问人:Eelke 提问时间:11/16/2023 更新时间:11/16/2023 访问量:9
已设置 C++ 生成器确定可选的 SOAP 属性
C++ Builder determining optional SOAP property has been set
问:
我有一个使用 WSDL 导入器生成的 soap 客户端。某些响应类型具有可选字段。对于这些字段,会生成额外的布尔字段来跟踪它们是否已设置,但这些字段是私有的。这是正在生成的内容的最小示例。
class SomeType : public TRemotable {
private:
int FValue;
bool FValue_Specified;
void __fastcall SetValue(int Index, int _prop_val)
{ FValue = _prop_val; FValue_Specified = true; }
public:
__property int Value = { index=(IS_OPTN), read=FValue, write=SetValue, stored = Value_Specified };
};
我希望能够读取,因为有时我需要区分未设置和默认值。FValue_Specified
版本是 C++ Builder Alexandria 11.3
答: 暂无答案
评论