I noticed that the WCF proxy generator does not generate the “specified” property flags for string fields
EG When I have two fields in complexType specified in WSDL:
<xs:element name="testStringField" type="xs:string" minOccurs="0" />
<xs:element name="testDecimalField" type="xs:decimal" minOccurs="0" />
the proxy generator will create these properties for the class for complexType:
testStringField
testDecimalField
testDecimalFieldSpecified
Why not * Property specified for strings? How can I get svcutil to create this?
source
share