specfying XML webservice to create elements, not attributes

  • Thread starter Thread starter Shikari Shambu
  • Start date Start date
S

Shikari Shambu

Hi,
Is there a way to get the .NET Web Service/ web service proxy to
automatically create elements instead of attributes?

TIA
 
use the xmlattribute attribute

<System.Xml.Serialization.XmlAttribute("AttributeName")> _
Dim OutputAsXmlAttribute as string
 
Back
Top