uuid(ac85f9b4-28d6-408d-aed3-65ec93d89c0f)
progid(Attachments.Attachment)
This represents a single request or response attachment.
| Name | Description |
|---|---|
| ISoapAttachment [default] | Common information about a single attachment |
| ISoapAttachmentFormat | Controls the attachment format |
Although it can be created directly, typically you create new attachments via the Create method on the request attachments collection
' create the attachments object, and switch to MIME formatted attachments
set a = CreateObject("pocketSOAP.Attachments")
a.format = formatMime
' create the parameter that has the attachment attached to it
set n = e.parameters.create("gif", empty)
' create the attachment, and create a reference between the attachment and the parameter
n.href = a.Request.Create ("c:\picture.gif", tnfMediaType, "image/gif").Uri
Copyright © Simon Fell, 2000-2004. All rights reserved.