-
-
Notifications
You must be signed in to change notification settings - Fork 11
libcURL.MultipartForm.Operator_Convert
Andrew Lambert edited this page Jun 22, 2015
·
18 revisions
#libcURL.MultipartForm.Operator_Convert
##Method Signature
Sub Operator_Convert(FromDict As Dictionary)##Parameters
| Name | Type | Comment |
|---|---|---|
| FromDict | Dictionary |
An HTML form. |
##Notes
This method overloads the conversion operator(=), permitting implicit and explicit conversion from a Dictionary into a MultipartForm. The dictionary contains NAME:VALUE pairs comprising HTML form elements: NAME is a string containing the form-element name; VALUE may be a string or a FolderItem.
##Example syntax
Dim Form As New Dictionary
Form.Value("Hello") = "world!"
Form.Value("File") = SomeFolderItem
Dim curlform As libcURL.MultipartForm = Form ' convertWiki home | Project page | Bugs | Become a sponsor
Text and code examples are Copyright ©2014-26 Andrew Lambert, offered under the CC BY-SA 3.0 License.