ParmCount property: SOAPDoc class

Description

This property returns the total number of parameters for the method section in a SOAP XML document as a number.

This property is read-only.

Example

For &I = 1 to &SOAPDoc.ParmCount
   &ParmName = &SOAPDoc.GetParmName(&I);
   &ParmValue = &SOAPDoc.GetParmValue(&I);
   /* do processing */
End-For;