0

値に基づいて 1 つの属性タグを制限する必要がある xml が 1 つあります。次のxmlファイルのように、属性「permanent」の値がtrueの場合、xmlに来るだけではありません

<Information >
<description>Worker information</description>
<A id="234" permanent="true" > 
    <name>xyz</name>
    <age>23</age> 
</A> 
<B id="244"> 
    <name>lkj</name>
    <age>27</age> 
</B>
<C id="204" permanent="true" > 
    <name>C</name>
    <age>27</age> 
</C>

</Information>
4

1 に答える 1

0

その属性をオプションにして、デザイナーで生成された「permanentFieldSpecified」boolプロパティをtrueに割り当てるという解決策を得ました。

于 2013-05-24T07:22:47.580 に答える