AddBase64 Method
See Also Example Applies To
Adds an XMLRPCMember object containing a name and an XMLRPCBase64 object to the object.
Syntax
object.AddBase64 (name, value)
| Part |
Description |
| object |
An object expression that evaluates to an XMLRPCStruct object. |
| name |
Required. A string which is the name of the value to add. |
| value |
Required. XMLRPCBase64 object to be appended to the XMLRPCStruct object. |
Settings
None.
Remarks
An example of the code fragment needed is below:
Dim X as New XMLRPCStruct ' The Struct to be added to
Dim Y as New XMLRPCBase64 ' The Base64 to be added to the Struct
Y.Unencoded = "Mary had a little lamb."
X.AddBase64 "Nursery Rhyme", Y
|