AddBase64 Method
See Also Example Applies To
Adds an XMLRPCValue object containing an XMLRPCBase64 object to the object.
Syntax
object.AddBase64 (value)
Remarks
An example of the code fragment needed is below:
Dim X as New XMLRPCArray ' The Array to be added to
Dim Y as New XMLRPCBase64 ' The Base64 to be added to the Array
Y.Unencoded = "Mary had a little lamb."
X.AddBase64 Y
|