Soap.WSDLBind.TParam
Delphi
TParam = class(TDocumented, IParam, IBindingInput, IBindingOutput)
C++
class PASCALIMPLEMENTATION TParam : public TDocumented
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
class | public | Soap.WSDLBind.pas Soap.WSDLBind.hpp |
Soap.WSDLBind | Soap.WSDLBind |
Description
TXMLNode represents a node in an XML document.
Soap.WSDLBind.TParam inherits from Xml.XMLDoc.TXMLNode. All content below this line refers to Xml.XMLDoc.TXMLNode.
TXMLNode represents a node in an XML document.
The XML Data Binding Wizard uses TXMLNode as a base class for the classes it generates to represent nodes that have child nodes. For example, if the XML document includes the following:
<Address country="US">
<Name>
<First> John </First>
<MI> Q. </MI>
<Last> Public </Last>
</Name>
<Street> 123 Easy Street </Street>
<City> Anytown </City>
<State> CA </State>
</Address>
then the XML Data Binding Wizard generates TXMLNode descendants for the elements Address and Name. Child nodes and node attributes appear as properties of the TXMLNode descendant.
TXMLNode implements the IXMLNode interface. Each TXMLNode descendant implements a class-specific interface that descends from IXMLNode. Typically, applications do not work directly with TXMLNode. Instead, they use the IXMLNode interface or the IXMLNode descendant that is implemented by a TXMLNode descendant.