You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1020 lines
51 KiB

  1. <?xml version="1.0" encoding="utf-8" standalone="yes"?>
  2. <doc>
  3. <members>
  4. <assembly>
  5. <name>UnityEngine.UnityWebRequestModule</name>
  6. </assembly>
  7. <member name="T:UnityEngine.Networking.CertificateHandler">
  8. <summary>
  9. <para>Responsible for rejecting or accepting certificates received on https requests.</para>
  10. </summary>
  11. </member>
  12. <member name="M:UnityEngine.Networking.CertificateHandler.Dispose">
  13. <summary>
  14. <para>Signals that this [CertificateHandler] is no longer being used, and should clean up any resources it is using.</para>
  15. </summary>
  16. </member>
  17. <member name="M:UnityEngine.Networking.CertificateHandler.ValidateCertificate(System.Byte[])">
  18. <summary>
  19. <para>Callback, invoked for each leaf certificate sent by the remote server.</para>
  20. </summary>
  21. <param name="certificateData">Certificate data in PEM or DER format. If certificate data contains multiple certificates, the first one is the leaf certificate.</param>
  22. <returns>
  23. <para>true if the certificate should be accepted, false if not.</para>
  24. </returns>
  25. </member>
  26. <member name="T:UnityEngine.Networking.DownloadHandler">
  27. <summary>
  28. <para>Manage and process HTTP response body data received from a remote server.</para>
  29. </summary>
  30. </member>
  31. <member name="P:UnityEngine.Networking.DownloadHandler.data">
  32. <summary>
  33. <para>Returns the raw bytes downloaded from the remote server, or null. (Read Only)</para>
  34. </summary>
  35. </member>
  36. <member name="P:UnityEngine.Networking.DownloadHandler.isDone">
  37. <summary>
  38. <para>Returns true if this DownloadHandler has been informed by its parent UnityWebRequest that all data has been received, and this DownloadHandler has completed any necessary post-download processing. (Read Only)</para>
  39. </summary>
  40. </member>
  41. <member name="P:UnityEngine.Networking.DownloadHandler.text">
  42. <summary>
  43. <para>Convenience property. Returns the bytes from data interpreted as a UTF8 string. (Read Only)</para>
  44. </summary>
  45. </member>
  46. <member name="M:UnityEngine.Networking.DownloadHandler.CompleteContent">
  47. <summary>
  48. <para>Callback, invoked when all data has been received from the remote server.</para>
  49. </summary>
  50. </member>
  51. <member name="M:UnityEngine.Networking.DownloadHandler.Dispose">
  52. <summary>
  53. <para>Signals that this DownloadHandler is no longer being used, and should clean up any resources it is using.</para>
  54. </summary>
  55. </member>
  56. <member name="M:UnityEngine.Networking.DownloadHandler.GetData">
  57. <summary>
  58. <para>Callback, invoked when the data property is accessed.</para>
  59. </summary>
  60. <returns>
  61. <para>Byte array to return as the value of the data property.</para>
  62. </returns>
  63. </member>
  64. <member name="M:UnityEngine.Networking.DownloadHandler.GetProgress">
  65. <summary>
  66. <para>Callback, invoked when UnityWebRequest.downloadProgress is accessed.</para>
  67. </summary>
  68. <returns>
  69. <para>The return value for UnityWebRequest.downloadProgress.</para>
  70. </returns>
  71. </member>
  72. <member name="M:UnityEngine.Networking.DownloadHandler.GetText">
  73. <summary>
  74. <para>Callback, invoked when the text property is accessed.</para>
  75. </summary>
  76. <returns>
  77. <para>String to return as the return value of the text property.</para>
  78. </returns>
  79. </member>
  80. <member name="M:UnityEngine.Networking.DownloadHandler.ReceiveContentLength(System.Int32)">
  81. <summary>
  82. <para>Callback, invoked with a Content-Length header is received.</para>
  83. </summary>
  84. <param name="contentLength">The value of the received Content-Length header.</param>
  85. </member>
  86. <member name="M:UnityEngine.Networking.DownloadHandler.ReceiveData(System.Byte[],System.Int32)">
  87. <summary>
  88. <para>Callback, invoked as data is received from the remote server.</para>
  89. </summary>
  90. <param name="data">A buffer containing unprocessed data, received from the remote server.</param>
  91. <param name="dataLength">The number of bytes in data which are new.</param>
  92. <returns>
  93. <para>True if the download should continue, false to abort.</para>
  94. </returns>
  95. </member>
  96. <member name="T:UnityEngine.Networking.DownloadHandlerBuffer">
  97. <summary>
  98. <para>A general-purpose DownloadHandler implementation which stores received data in a native byte buffer.</para>
  99. </summary>
  100. </member>
  101. <member name="M:UnityEngine.Networking.DownloadHandlerBuffer.#ctor">
  102. <summary>
  103. <para>Default constructor.</para>
  104. </summary>
  105. </member>
  106. <member name="M:UnityEngine.Networking.DownloadHandlerBuffer.GetContent(UnityEngine.Networking.UnityWebRequest)">
  107. <summary>
  108. <para>Returns a copy of the native-memory buffer interpreted as a UTF8 string.</para>
  109. </summary>
  110. <param name="www">A finished UnityWebRequest object with DownloadHandlerBuffer attached.</param>
  111. <returns>
  112. <para>The same as DownloadHandlerBuffer.text</para>
  113. </returns>
  114. </member>
  115. <member name="M:UnityEngine.Networking.DownloadHandlerBuffer.GetData">
  116. <summary>
  117. <para>Returns a copy of the contents of the native-memory data buffer as a byte array.</para>
  118. </summary>
  119. <returns>
  120. <para>A copy of the data which has been downloaded.</para>
  121. </returns>
  122. </member>
  123. <member name="T:UnityEngine.Networking.DownloadHandlerFile">
  124. <summary>
  125. <para>Download handler for saving the downloaded data to file.</para>
  126. </summary>
  127. </member>
  128. <member name="P:UnityEngine.Networking.DownloadHandlerFile.removeFileOnAbort">
  129. <summary>
  130. <para>Should the created file be removed if download is aborted (manually or due to an error). Default: false.</para>
  131. </summary>
  132. </member>
  133. <member name="M:UnityEngine.Networking.DownloadHandlerFile.#ctor(System.String)">
  134. <summary>
  135. <para>Creates a new instance and a file on disk where downloaded data will be written to.</para>
  136. </summary>
  137. <param name="path">Path to file to be written.</param>
  138. </member>
  139. <member name="T:UnityEngine.Networking.DownloadHandlerScript">
  140. <summary>
  141. <para>An abstract base class for user-created scripting-driven DownloadHandler implementations.</para>
  142. </summary>
  143. </member>
  144. <member name="M:UnityEngine.Networking.DownloadHandlerScript.#ctor">
  145. <summary>
  146. <para>Create a DownloadHandlerScript which allocates new buffers when passing data to callbacks.</para>
  147. </summary>
  148. </member>
  149. <member name="M:UnityEngine.Networking.DownloadHandlerScript.#ctor(System.Byte[])">
  150. <summary>
  151. <para>Create a DownloadHandlerScript which reuses a preallocated buffer to pass data to callbacks.</para>
  152. </summary>
  153. <param name="preallocatedBuffer">A byte buffer into which data will be copied, for use by DownloadHandler.ReceiveData.</param>
  154. </member>
  155. <member name="?:UnityEngine.Networking.IMultipartFormSection">
  156. <summary>
  157. <para>An interface for composition of data into multipart forms.</para>
  158. </summary>
  159. </member>
  160. <member name="P:UnityEngine.Networking.IMultipartFormSection.contentType">
  161. <summary>
  162. <para>Returns the value to use in the Content-Type header for this form section.</para>
  163. </summary>
  164. <returns>
  165. <para>The value to use in the Content-Type header, or null.</para>
  166. </returns>
  167. </member>
  168. <member name="P:UnityEngine.Networking.IMultipartFormSection.fileName">
  169. <summary>
  170. <para>Returns a string denoting the desired filename of this section on the destination server.</para>
  171. </summary>
  172. <returns>
  173. <para>The desired file name of this section, or null if this is not a file section.</para>
  174. </returns>
  175. </member>
  176. <member name="P:UnityEngine.Networking.IMultipartFormSection.sectionData">
  177. <summary>
  178. <para>Returns the raw binary data contained in this section. Must not return null or a zero-length array.</para>
  179. </summary>
  180. <returns>
  181. <para>The raw binary data contained in this section. Must not be null or empty.</para>
  182. </returns>
  183. </member>
  184. <member name="P:UnityEngine.Networking.IMultipartFormSection.sectionName">
  185. <summary>
  186. <para>Returns the name of this section, if any.</para>
  187. </summary>
  188. <returns>
  189. <para>The section's name, or null.</para>
  190. </returns>
  191. </member>
  192. <member name="T:UnityEngine.Networking.MultipartFormDataSection">
  193. <summary>
  194. <para>A helper object for form sections containing generic, non-file data.</para>
  195. </summary>
  196. </member>
  197. <member name="P:UnityEngine.Networking.MultipartFormDataSection.contentType">
  198. <summary>
  199. <para>Returns the value to use in this section's Content-Type header.</para>
  200. </summary>
  201. <returns>
  202. <para>The Content-Type header for this section, or null.</para>
  203. </returns>
  204. </member>
  205. <member name="P:UnityEngine.Networking.MultipartFormDataSection.fileName">
  206. <summary>
  207. <para>Returns a string denoting the desired filename of this section on the destination server.</para>
  208. </summary>
  209. <returns>
  210. <para>The desired file name of this section, or null if this is not a file section.</para>
  211. </returns>
  212. </member>
  213. <member name="P:UnityEngine.Networking.MultipartFormDataSection.sectionData">
  214. <summary>
  215. <para>Returns the raw binary data contained in this section. Will not return null or a zero-length array.</para>
  216. </summary>
  217. <returns>
  218. <para>The raw binary data contained in this section. Will not be null or empty.</para>
  219. </returns>
  220. </member>
  221. <member name="P:UnityEngine.Networking.MultipartFormDataSection.sectionName">
  222. <summary>
  223. <para>Returns the name of this section, if any.</para>
  224. </summary>
  225. <returns>
  226. <para>The section's name, or null.</para>
  227. </returns>
  228. </member>
  229. <member name="M:UnityEngine.Networking.MultipartFormDataSection.#ctor(System.Byte[])">
  230. <summary>
  231. <para>Raw data section, unnamed and no Content-Type header.</para>
  232. </summary>
  233. <param name="data">Data payload of this section.</param>
  234. </member>
  235. <member name="M:UnityEngine.Networking.MultipartFormDataSection.#ctor(System.String,System.Byte[])">
  236. <summary>
  237. <para>Raw data section with a section name, no Content-Type header.</para>
  238. </summary>
  239. <param name="name">Section name.</param>
  240. <param name="data">Data payload of this section.</param>
  241. </member>
  242. <member name="M:UnityEngine.Networking.MultipartFormDataSection.#ctor(System.String,System.Byte[],System.String)">
  243. <summary>
  244. <para>A raw data section with a section name and a Content-Type header.</para>
  245. </summary>
  246. <param name="name">Section name.</param>
  247. <param name="data">Data payload of this section.</param>
  248. <param name="contentType">The value for this section's Content-Type header.</param>
  249. </member>
  250. <member name="M:UnityEngine.Networking.MultipartFormDataSection.#ctor(System.String,System.String,System.Text.Encoding,System.String)">
  251. <summary>
  252. <para>A named raw data section whose payload is derived from a string, with a Content-Type header.</para>
  253. </summary>
  254. <param name="name">Section name.</param>
  255. <param name="data">String data payload for this section.</param>
  256. <param name="contentType">The value for this section's Content-Type header.</param>
  257. <param name="encoding">An encoding to marshal data to or from raw bytes.</param>
  258. </member>
  259. <member name="M:UnityEngine.Networking.MultipartFormDataSection.#ctor(System.String,System.String,System.String)">
  260. <summary>
  261. <para>A named raw data section whose payload is derived from a UTF8 string, with a Content-Type header.</para>
  262. </summary>
  263. <param name="name">Section name.</param>
  264. <param name="data">String data payload for this section.</param>
  265. <param name="contentType">C.</param>
  266. </member>
  267. <member name="M:UnityEngine.Networking.MultipartFormDataSection.#ctor(System.String,System.String)">
  268. <summary>
  269. <para>A names raw data section whose payload is derived from a UTF8 string, with a default Content-Type.</para>
  270. </summary>
  271. <param name="name">Section name.</param>
  272. <param name="data">String data payload for this section.</param>
  273. </member>
  274. <member name="M:UnityEngine.Networking.MultipartFormDataSection.#ctor(System.String)">
  275. <summary>
  276. <para>An anonymous raw data section whose payload is derived from a UTF8 string, with a default Content-Type.</para>
  277. </summary>
  278. <param name="data">String data payload for this section.</param>
  279. </member>
  280. <member name="T:UnityEngine.Networking.MultipartFormFileSection">
  281. <summary>
  282. <para>A helper object for adding file uploads to multipart forms via the [IMultipartFormSection] API.</para>
  283. </summary>
  284. </member>
  285. <member name="P:UnityEngine.Networking.MultipartFormFileSection.contentType">
  286. <summary>
  287. <para>Returns the value of the section's Content-Type header.</para>
  288. </summary>
  289. <returns>
  290. <para>The Content-Type header for this section, or null.</para>
  291. </returns>
  292. </member>
  293. <member name="P:UnityEngine.Networking.MultipartFormFileSection.fileName">
  294. <summary>
  295. <para>Returns a string denoting the desired filename of this section on the destination server.</para>
  296. </summary>
  297. <returns>
  298. <para>The desired file name of this section, or null if this is not a file section.</para>
  299. </returns>
  300. </member>
  301. <member name="P:UnityEngine.Networking.MultipartFormFileSection.sectionData">
  302. <summary>
  303. <para>Returns the raw binary data contained in this section. Will not return null or a zero-length array.</para>
  304. </summary>
  305. <returns>
  306. <para>The raw binary data contained in this section. Will not be null or empty.</para>
  307. </returns>
  308. </member>
  309. <member name="P:UnityEngine.Networking.MultipartFormFileSection.sectionName">
  310. <summary>
  311. <para>Returns the name of this section, if any.</para>
  312. </summary>
  313. <returns>
  314. <para>The section's name, or null.</para>
  315. </returns>
  316. </member>
  317. <member name="M:UnityEngine.Networking.MultipartFormFileSection.#ctor(System.String,System.Byte[],System.String,System.String)">
  318. <summary>
  319. <para>Contains a named file section based on the raw bytes from data, with a custom Content-Type and file name.</para>
  320. </summary>
  321. <param name="name">Name of this form section.</param>
  322. <param name="data">Raw contents of the file to upload.</param>
  323. <param name="fileName">Name of the file uploaded by this form section.</param>
  324. <param name="contentType">The value for this section's Content-Type header.</param>
  325. </member>
  326. <member name="M:UnityEngine.Networking.MultipartFormFileSection.#ctor(System.Byte[])">
  327. <summary>
  328. <para>Contains an anonymous file section based on the raw bytes from data, assigns a default Content-Type and file name.</para>
  329. </summary>
  330. <param name="data">Raw contents of the file to upload.</param>
  331. </member>
  332. <member name="M:UnityEngine.Networking.MultipartFormFileSection.#ctor(System.String,System.Byte[])">
  333. <summary>
  334. <para>Contains an anonymous file section based on the raw bytes from data with a specific file name. Assigns a default Content-Type.</para>
  335. </summary>
  336. <param name="data">Raw contents of the file to upload.</param>
  337. <param name="fileName">Name of the file uploaded by this form section.</param>
  338. </member>
  339. <member name="M:UnityEngine.Networking.MultipartFormFileSection.#ctor(System.String,System.String,System.Text.Encoding,System.String)">
  340. <summary>
  341. <para>Contains a named file section with data drawn from data, as marshaled by dataEncoding. Assigns a specific file name from fileName and a default Content-Type.</para>
  342. </summary>
  343. <param name="name">Name of this form section.</param>
  344. <param name="data">Contents of the file to upload.</param>
  345. <param name="dataEncoding">A string encoding.</param>
  346. <param name="fileName">Name of the file uploaded by this form section.</param>
  347. </member>
  348. <member name="M:UnityEngine.Networking.MultipartFormFileSection.#ctor(System.String,System.Text.Encoding,System.String)">
  349. <summary>
  350. <para>An anonymous file section with data drawn from data, as marshaled by dataEncoding. Assigns a specific file name from fileName and a default Content-Type.</para>
  351. </summary>
  352. <param name="data">Contents of the file to upload.</param>
  353. <param name="dataEncoding">A string encoding.</param>
  354. <param name="fileName">Name of the file uploaded by this form section.</param>
  355. </member>
  356. <member name="M:UnityEngine.Networking.MultipartFormFileSection.#ctor(System.String,System.String)">
  357. <summary>
  358. <para>An anonymous file section with data drawn from the UTF8 string data. Assigns a specific file name from fileName and a default Content-Type.</para>
  359. </summary>
  360. <param name="data">Contents of the file to upload.</param>
  361. <param name="fileName">Name of the file uploaded by this form section.</param>
  362. </member>
  363. <member name="T:UnityEngine.Networking.UnityWebRequest">
  364. <summary>
  365. <para>The UnityWebRequest object is used to communicate with web servers.</para>
  366. </summary>
  367. </member>
  368. <member name="P:UnityEngine.Networking.UnityWebRequest.certificateHandler">
  369. <summary>
  370. <para>Holds a reference to a CertificateHandler object, which manages certificate validation for this UnityWebRequest.</para>
  371. </summary>
  372. </member>
  373. <member name="P:UnityEngine.Networking.UnityWebRequest.chunkedTransfer">
  374. <summary>
  375. <para>Indicates whether the UnityWebRequest system should employ the HTTP/1.1 chunked-transfer encoding method.</para>
  376. </summary>
  377. </member>
  378. <member name="P:UnityEngine.Networking.UnityWebRequest.disposeCertificateHandlerOnDispose">
  379. <summary>
  380. <para>If true, any CertificateHandler attached to this UnityWebRequest will have CertificateHandler.Dispose called automatically when UnityWebRequest.Dispose is called.</para>
  381. </summary>
  382. </member>
  383. <member name="P:UnityEngine.Networking.UnityWebRequest.disposeDownloadHandlerOnDispose">
  384. <summary>
  385. <para>If true, any DownloadHandler attached to this UnityWebRequest will have DownloadHandler.Dispose called automatically when UnityWebRequest.Dispose is called.</para>
  386. </summary>
  387. </member>
  388. <member name="P:UnityEngine.Networking.UnityWebRequest.disposeUploadHandlerOnDispose">
  389. <summary>
  390. <para>If true, any UploadHandler attached to this UnityWebRequest will have UploadHandler.Dispose called automatically when UnityWebRequest.Dispose is called.</para>
  391. </summary>
  392. </member>
  393. <member name="P:UnityEngine.Networking.UnityWebRequest.downloadedBytes">
  394. <summary>
  395. <para>Returns the number of bytes of body data the system has downloaded from the remote server. (Read Only)</para>
  396. </summary>
  397. </member>
  398. <member name="P:UnityEngine.Networking.UnityWebRequest.downloadHandler">
  399. <summary>
  400. <para>Holds a reference to a DownloadHandler object, which manages body data received from the remote server by this UnityWebRequest.</para>
  401. </summary>
  402. </member>
  403. <member name="P:UnityEngine.Networking.UnityWebRequest.downloadProgress">
  404. <summary>
  405. <para>Returns a floating-point value between 0.0 and 1.0, indicating the progress of downloading body data from the server. (Read Only)</para>
  406. </summary>
  407. </member>
  408. <member name="P:UnityEngine.Networking.UnityWebRequest.error">
  409. <summary>
  410. <para>A human-readable string describing any system errors encountered by this UnityWebRequest object while handling HTTP requests or responses. (Read Only)</para>
  411. </summary>
  412. </member>
  413. <member name="P:UnityEngine.Networking.UnityWebRequest.isDone">
  414. <summary>
  415. <para>Returns true after the UnityWebRequest has finished communicating with the remote server. (Read Only)</para>
  416. </summary>
  417. </member>
  418. <member name="P:UnityEngine.Networking.UnityWebRequest.isHttpError">
  419. <summary>
  420. <para>Returns true after this UnityWebRequest receives an HTTP response code indicating an error. (Read Only)</para>
  421. </summary>
  422. </member>
  423. <member name="P:UnityEngine.Networking.UnityWebRequest.isModifiable">
  424. <summary>
  425. <para>Returns true while a UnityWebRequest’s configuration properties can be altered. (Read Only)</para>
  426. </summary>
  427. </member>
  428. <member name="P:UnityEngine.Networking.UnityWebRequest.isNetworkError">
  429. <summary>
  430. <para>Returns true after this UnityWebRequest encounters a system error. (Read Only)</para>
  431. </summary>
  432. </member>
  433. <member name="F:UnityEngine.Networking.UnityWebRequest.kHttpVerbCREATE">
  434. <summary>
  435. <para>The string "CREATE", commonly used as the verb for an HTTP CREATE request.</para>
  436. </summary>
  437. </member>
  438. <member name="F:UnityEngine.Networking.UnityWebRequest.kHttpVerbDELETE">
  439. <summary>
  440. <para>The string "DELETE", commonly used as the verb for an HTTP DELETE request.</para>
  441. </summary>
  442. </member>
  443. <member name="F:UnityEngine.Networking.UnityWebRequest.kHttpVerbGET">
  444. <summary>
  445. <para>The string "GET", commonly used as the verb for an HTTP GET request.</para>
  446. </summary>
  447. </member>
  448. <member name="F:UnityEngine.Networking.UnityWebRequest.kHttpVerbHEAD">
  449. <summary>
  450. <para>The string "HEAD", commonly used as the verb for an HTTP HEAD request.</para>
  451. </summary>
  452. </member>
  453. <member name="F:UnityEngine.Networking.UnityWebRequest.kHttpVerbPOST">
  454. <summary>
  455. <para>The string "POST", commonly used as the verb for an HTTP POST request.</para>
  456. </summary>
  457. </member>
  458. <member name="F:UnityEngine.Networking.UnityWebRequest.kHttpVerbPUT">
  459. <summary>
  460. <para>The string "PUT", commonly used as the verb for an HTTP PUT request.</para>
  461. </summary>
  462. </member>
  463. <member name="P:UnityEngine.Networking.UnityWebRequest.method">
  464. <summary>
  465. <para>Defines the HTTP verb used by this UnityWebRequest, such as GET or POST.</para>
  466. </summary>
  467. </member>
  468. <member name="P:UnityEngine.Networking.UnityWebRequest.redirectLimit">
  469. <summary>
  470. <para>Indicates the number of redirects which this UnityWebRequest will follow before halting with a “Redirect Limit Exceeded” system error.</para>
  471. </summary>
  472. </member>
  473. <member name="P:UnityEngine.Networking.UnityWebRequest.responseCode">
  474. <summary>
  475. <para>The numeric HTTP response code returned by the server, such as 200, 404 or 500. (Read Only)</para>
  476. </summary>
  477. </member>
  478. <member name="P:UnityEngine.Networking.UnityWebRequest.timeout">
  479. <summary>
  480. <para>Sets UnityWebRequest to attempt to abort after the number of seconds in timeout have passed.</para>
  481. </summary>
  482. </member>
  483. <member name="P:UnityEngine.Networking.UnityWebRequest.uploadedBytes">
  484. <summary>
  485. <para>Returns the number of bytes of body data the system has uploaded to the remote server. (Read Only)</para>
  486. </summary>
  487. </member>
  488. <member name="P:UnityEngine.Networking.UnityWebRequest.uploadHandler">
  489. <summary>
  490. <para>Holds a reference to the UploadHandler object which manages body data to be uploaded to the remote server.</para>
  491. </summary>
  492. </member>
  493. <member name="P:UnityEngine.Networking.UnityWebRequest.uploadProgress">
  494. <summary>
  495. <para>Returns a floating-point value between 0.0 and 1.0, indicating the progress of uploading body data to the server.</para>
  496. </summary>
  497. </member>
  498. <member name="P:UnityEngine.Networking.UnityWebRequest.uri">
  499. <summary>
  500. <para>Defines the target URI for the UnityWebRequest to communicate with.</para>
  501. </summary>
  502. </member>
  503. <member name="P:UnityEngine.Networking.UnityWebRequest.url">
  504. <summary>
  505. <para>Defines the target URL for the UnityWebRequest to communicate with.</para>
  506. </summary>
  507. </member>
  508. <member name="P:UnityEngine.Networking.UnityWebRequest.useHttpContinue">
  509. <summary>
  510. <para>Determines whether this UnityWebRequest will include Expect: 100-Continue in its outgoing request headers. (Default: true).</para>
  511. </summary>
  512. </member>
  513. <member name="M:UnityEngine.Networking.UnityWebRequest.Abort">
  514. <summary>
  515. <para>If in progress, halts the UnityWebRequest as soon as possible.</para>
  516. </summary>
  517. </member>
  518. <member name="M:UnityEngine.Networking.UnityWebRequest.ClearCookieCache">
  519. <summary>
  520. <para>Clears stored cookies from the cache.</para>
  521. </summary>
  522. <param name="domain">An optional URL to define which cookies are removed. Only cookies that apply to this URL will be removed from the cache.</param>
  523. </member>
  524. <member name="M:UnityEngine.Networking.UnityWebRequest.ClearCookieCache">
  525. <summary>
  526. <para>Clears stored cookies from the cache.</para>
  527. </summary>
  528. <param name="domain">An optional URL to define which cookies are removed. Only cookies that apply to this URL will be removed from the cache.</param>
  529. </member>
  530. <member name="M:UnityEngine.Networking.UnityWebRequest.#ctor">
  531. <summary>
  532. <para>Creates a UnityWebRequest with the default options and no attached DownloadHandler or UploadHandler. Default method is GET.</para>
  533. </summary>
  534. <param name="url">The target URL with which this UnityWebRequest will communicate. Also accessible via the url property.</param>
  535. <param name="uri">The target URI to which form data will be transmitted.</param>
  536. <param name="method">HTTP GET, POST, etc. methods.</param>
  537. <param name="downloadHandler">Replies from the server.</param>
  538. <param name="uploadHandler">Upload data to the server.</param>
  539. </member>
  540. <member name="M:UnityEngine.Networking.UnityWebRequest.#ctor(System.String)">
  541. <summary>
  542. <para>Creates a UnityWebRequest with the default options and no attached DownloadHandler or UploadHandler. Default method is GET.</para>
  543. </summary>
  544. <param name="url">The target URL with which this UnityWebRequest will communicate. Also accessible via the url property.</param>
  545. <param name="uri">The target URI to which form data will be transmitted.</param>
  546. <param name="method">HTTP GET, POST, etc. methods.</param>
  547. <param name="downloadHandler">Replies from the server.</param>
  548. <param name="uploadHandler">Upload data to the server.</param>
  549. </member>
  550. <member name="M:UnityEngine.Networking.UnityWebRequest.#ctor(System.Uri)">
  551. <summary>
  552. <para>Creates a UnityWebRequest with the default options and no attached DownloadHandler or UploadHandler. Default method is GET.</para>
  553. </summary>
  554. <param name="url">The target URL with which this UnityWebRequest will communicate. Also accessible via the url property.</param>
  555. <param name="uri">The target URI to which form data will be transmitted.</param>
  556. <param name="method">HTTP GET, POST, etc. methods.</param>
  557. <param name="downloadHandler">Replies from the server.</param>
  558. <param name="uploadHandler">Upload data to the server.</param>
  559. </member>
  560. <member name="M:UnityEngine.Networking.UnityWebRequest.#ctor(System.String,System.String)">
  561. <summary>
  562. <para>Creates a UnityWebRequest with the default options and no attached DownloadHandler or UploadHandler. Default method is GET.</para>
  563. </summary>
  564. <param name="url">The target URL with which this UnityWebRequest will communicate. Also accessible via the url property.</param>
  565. <param name="uri">The target URI to which form data will be transmitted.</param>
  566. <param name="method">HTTP GET, POST, etc. methods.</param>
  567. <param name="downloadHandler">Replies from the server.</param>
  568. <param name="uploadHandler">Upload data to the server.</param>
  569. </member>
  570. <member name="M:UnityEngine.Networking.UnityWebRequest.#ctor(System.Uri,System.String)">
  571. <summary>
  572. <para>Creates a UnityWebRequest with the default options and no attached DownloadHandler or UploadHandler. Default method is GET.</para>
  573. </summary>
  574. <param name="url">The target URL with which this UnityWebRequest will communicate. Also accessible via the url property.</param>
  575. <param name="uri">The target URI to which form data will be transmitted.</param>
  576. <param name="method">HTTP GET, POST, etc. methods.</param>
  577. <param name="downloadHandler">Replies from the server.</param>
  578. <param name="uploadHandler">Upload data to the server.</param>
  579. </member>
  580. <member name="M:UnityEngine.Networking.UnityWebRequest.#ctor(System.String,System.String,UnityEngine.Networking.DownloadHandler,UnityEngine.Networking.UploadHandler)">
  581. <summary>
  582. <para>Creates a UnityWebRequest with the default options and no attached DownloadHandler or UploadHandler. Default method is GET.</para>
  583. </summary>
  584. <param name="url">The target URL with which this UnityWebRequest will communicate. Also accessible via the url property.</param>
  585. <param name="uri">The target URI to which form data will be transmitted.</param>
  586. <param name="method">HTTP GET, POST, etc. methods.</param>
  587. <param name="downloadHandler">Replies from the server.</param>
  588. <param name="uploadHandler">Upload data to the server.</param>
  589. </member>
  590. <member name="M:UnityEngine.Networking.UnityWebRequest.#ctor(System.Uri,System.String,UnityEngine.Networking.DownloadHandler,UnityEngine.Networking.UploadHandler)">
  591. <summary>
  592. <para>Creates a UnityWebRequest with the default options and no attached DownloadHandler or UploadHandler. Default method is GET.</para>
  593. </summary>
  594. <param name="url">The target URL with which this UnityWebRequest will communicate. Also accessible via the url property.</param>
  595. <param name="uri">The target URI to which form data will be transmitted.</param>
  596. <param name="method">HTTP GET, POST, etc. methods.</param>
  597. <param name="downloadHandler">Replies from the server.</param>
  598. <param name="uploadHandler">Upload data to the server.</param>
  599. </member>
  600. <member name="M:UnityEngine.Networking.UnityWebRequest.Delete(System.String)">
  601. <summary>
  602. <para>Creates a UnityWebRequest configured for HTTP DELETE.</para>
  603. </summary>
  604. <param name="uri">The URI to which a DELETE request should be sent.</param>
  605. <returns>
  606. <para>A UnityWebRequest configured to send an HTTP DELETE request.</para>
  607. </returns>
  608. </member>
  609. <member name="M:UnityEngine.Networking.UnityWebRequest.Dispose">
  610. <summary>
  611. <para>Signals that this UnityWebRequest is no longer being used, and should clean up any resources it is using.</para>
  612. </summary>
  613. </member>
  614. <member name="M:UnityEngine.Networking.UnityWebRequest.EscapeURL(System.String)">
  615. <summary>
  616. <para>Escapes characters in a string to ensure they are URL-friendly.</para>
  617. </summary>
  618. <param name="s">A string with characters to be escaped.</param>
  619. <param name="e">The text encoding to use.</param>
  620. </member>
  621. <member name="M:UnityEngine.Networking.UnityWebRequest.EscapeURL(System.String,System.Text.Encoding)">
  622. <summary>
  623. <para>Escapes characters in a string to ensure they are URL-friendly.</para>
  624. </summary>
  625. <param name="s">A string with characters to be escaped.</param>
  626. <param name="e">The text encoding to use.</param>
  627. </member>
  628. <member name="M:UnityEngine.Networking.UnityWebRequest.GenerateBoundary">
  629. <summary>
  630. <para>Generate a random 40-byte array for use as a multipart form boundary.</para>
  631. </summary>
  632. <returns>
  633. <para>40 random bytes, guaranteed to contain only printable ASCII values.</para>
  634. </returns>
  635. </member>
  636. <member name="M:UnityEngine.Networking.UnityWebRequest.Get(System.String)">
  637. <summary>
  638. <para>Create a UnityWebRequest for HTTP GET.</para>
  639. </summary>
  640. <param name="uri">The URI of the resource to retrieve via HTTP GET.</param>
  641. <returns>
  642. <para>An object that retrieves data from the uri.</para>
  643. </returns>
  644. </member>
  645. <member name="M:UnityEngine.Networking.UnityWebRequest.Get(System.Uri)">
  646. <summary>
  647. <para>Create a UnityWebRequest for HTTP GET.</para>
  648. </summary>
  649. <param name="uri">The URI of the resource to retrieve via HTTP GET.</param>
  650. <returns>
  651. <para>An object that retrieves data from the uri.</para>
  652. </returns>
  653. </member>
  654. <member name="M:UnityEngine.Networking.UnityWebRequest.GetAssetBundle(System.String,System.UInt32)">
  655. <summary>
  656. <para>Deprecated. Replaced by UnityWebRequestAssetBundle.GetAssetBundle.</para>
  657. </summary>
  658. <param name="uri"></param>
  659. <param name="crc"></param>
  660. <param name="version"></param>
  661. <param name="hash"></param>
  662. <param name="cachedAssetBundle"></param>
  663. </member>
  664. <member name="M:UnityEngine.Networking.UnityWebRequest.GetAssetBundle(System.String,System.UInt32,System.UInt32)">
  665. <summary>
  666. <para>Deprecated. Replaced by UnityWebRequestAssetBundle.GetAssetBundle.</para>
  667. </summary>
  668. <param name="uri"></param>
  669. <param name="crc"></param>
  670. <param name="version"></param>
  671. <param name="hash"></param>
  672. <param name="cachedAssetBundle"></param>
  673. </member>
  674. <member name="M:UnityEngine.Networking.UnityWebRequest.GetAssetBundle(System.String,UnityEngine.Hash128,System.UInt32)">
  675. <summary>
  676. <para>Deprecated. Replaced by UnityWebRequestAssetBundle.GetAssetBundle.</para>
  677. </summary>
  678. <param name="uri"></param>
  679. <param name="crc"></param>
  680. <param name="version"></param>
  681. <param name="hash"></param>
  682. <param name="cachedAssetBundle"></param>
  683. </member>
  684. <member name="M:UnityEngine.Networking.UnityWebRequest.GetAssetBundle(System.String,UnityEngine.CachedAssetBundle,System.UInt32)">
  685. <summary>
  686. <para>Deprecated. Replaced by UnityWebRequestAssetBundle.GetAssetBundle.</para>
  687. </summary>
  688. <param name="uri"></param>
  689. <param name="crc"></param>
  690. <param name="version"></param>
  691. <param name="hash"></param>
  692. <param name="cachedAssetBundle"></param>
  693. </member>
  694. <member name="M:UnityEngine.Networking.UnityWebRequest.GetAudioClip(System.String,UnityEngine.AudioType)">
  695. <summary>
  696. <para>OBSOLETE. Use UnityWebRequestMultimedia.GetAudioClip().</para>
  697. </summary>
  698. <param name="uri"></param>
  699. <param name="audioType"></param>
  700. </member>
  701. <member name="M:UnityEngine.Networking.UnityWebRequest.GetRequestHeader(System.String)">
  702. <summary>
  703. <para>Retrieves the value of a custom request header.</para>
  704. </summary>
  705. <param name="name">Name of the custom request header. Case-insensitive.</param>
  706. <returns>
  707. <para>The value of the custom request header. If no custom header with a matching name has been set, returns an empty string.</para>
  708. </returns>
  709. </member>
  710. <member name="M:UnityEngine.Networking.UnityWebRequest.GetResponseHeader(System.String)">
  711. <summary>
  712. <para>Retrieves the value of a response header from the latest HTTP response received.</para>
  713. </summary>
  714. <param name="name">The name of the HTTP header to retrieve. Case-insensitive.</param>
  715. <returns>
  716. <para>The value of the HTTP header from the latest HTTP response. If no header with a matching name has been received, or no responses have been received, returns null.</para>
  717. </returns>
  718. </member>
  719. <member name="M:UnityEngine.Networking.UnityWebRequest.GetResponseHeaders">
  720. <summary>
  721. <para>Retrieves a dictionary containing all the response headers received by this UnityWebRequest in the latest HTTP response.</para>
  722. </summary>
  723. <returns>
  724. <para>A dictionary containing all the response headers received in the latest HTTP response. If no responses have been received, returns null.</para>
  725. </returns>
  726. </member>
  727. <member name="M:UnityEngine.Networking.UnityWebRequest.GetTexture(System.String)">
  728. <summary>
  729. <para>Creates a UnityWebRequest intended to download an image via HTTP GET and create a Texture based on the retrieved data.</para>
  730. </summary>
  731. <param name="uri">The URI of the image to download.</param>
  732. <param name="nonReadable">If true, the texture's raw data will not be accessible to script. This can conserve memory. Default: false.</param>
  733. <returns>
  734. <para>A UnityWebRequest properly configured to download an image and convert it to a Texture.</para>
  735. </returns>
  736. </member>
  737. <member name="M:UnityEngine.Networking.UnityWebRequest.GetTexture(System.String,System.Boolean)">
  738. <summary>
  739. <para>Creates a UnityWebRequest intended to download an image via HTTP GET and create a Texture based on the retrieved data.</para>
  740. </summary>
  741. <param name="uri">The URI of the image to download.</param>
  742. <param name="nonReadable">If true, the texture's raw data will not be accessible to script. This can conserve memory. Default: false.</param>
  743. <returns>
  744. <para>A UnityWebRequest properly configured to download an image and convert it to a Texture.</para>
  745. </returns>
  746. </member>
  747. <member name="M:UnityEngine.Networking.UnityWebRequest.Head(System.String)">
  748. <summary>
  749. <para>Creates a UnityWebRequest configured to send a HTTP HEAD request.</para>
  750. </summary>
  751. <param name="uri">The URI to which to send a HTTP HEAD request.</param>
  752. <returns>
  753. <para>A UnityWebRequest configured to transmit a HTTP HEAD request.</para>
  754. </returns>
  755. </member>
  756. <member name="M:UnityEngine.Networking.UnityWebRequest.Post(System.String,System.String)">
  757. <summary>
  758. <para>Creates a UnityWebRequest configured to send form data to a server via HTTP POST.</para>
  759. </summary>
  760. <param name="uri">The target URI to which form data will be transmitted.</param>
  761. <param name="postData">Form body data. Will be URLEncoded prior to transmission.</param>
  762. <returns>
  763. <para>A UnityWebRequest configured to send form data to uri via POST.</para>
  764. </returns>
  765. </member>
  766. <member name="M:UnityEngine.Networking.UnityWebRequest.Post(System.String,UnityEngine.WWWForm)">
  767. <summary>
  768. <para>Create a UnityWebRequest configured to send form data to a server via HTTP POST.</para>
  769. </summary>
  770. <param name="uri">The target URI to which form data will be transmitted.</param>
  771. <param name="formData">Form fields or files encapsulated in a WWWForm object, for formatting and transmission to the remote server.</param>
  772. <returns>
  773. <para>A UnityWebRequest configured to send form data to uri via POST.</para>
  774. </returns>
  775. </member>
  776. <member name="M:UnityEngine.Networking.UnityWebRequest.Post(System.String,System.Collections.Generic.List`1&lt;UnityEngine.Networking.IMultipartFormSection&gt;)">
  777. <summary>
  778. <para>Create a UnityWebRequest configured to send form data to a server via HTTP POST.</para>
  779. </summary>
  780. <param name="uri">The target URI to which form data will be transmitted.</param>
  781. <param name="multipartFormSections">A list of form fields or files to be formatted and transmitted to the remote server.</param>
  782. <param name="boundary">A unique boundary string, which will be used when separating form fields in a multipart form. If not supplied, a boundary will be generated for you.</param>
  783. <returns>
  784. <para>A UnityWebRequest configured to send form data to uri via POST.</para>
  785. </returns>
  786. </member>
  787. <member name="M:UnityEngine.Networking.UnityWebRequest.Post(System.String,System.Collections.Generic.List`1&lt;UnityEngine.Networking.IMultipartFormSection&gt;,System.Byte[])">
  788. <summary>
  789. <para>Create a UnityWebRequest configured to send form data to a server via HTTP POST.</para>
  790. </summary>
  791. <param name="uri">The target URI to which form data will be transmitted.</param>
  792. <param name="multipartFormSections">A list of form fields or files to be formatted and transmitted to the remote server.</param>
  793. <param name="boundary">A unique boundary string, which will be used when separating form fields in a multipart form. If not supplied, a boundary will be generated for you.</param>
  794. <returns>
  795. <para>A UnityWebRequest configured to send form data to uri via POST.</para>
  796. </returns>
  797. </member>
  798. <member name="M:UnityEngine.Networking.UnityWebRequest.Post(System.String,System.Collections.Generic.Dictionary`2&lt;System.String,System.String&gt;)">
  799. <summary>
  800. <para>Create a UnityWebRequest configured to send form data to a server via HTTP POST.</para>
  801. </summary>
  802. <param name="uri">The target URI to which form data will be transmitted.</param>
  803. <param name="formFields">Strings indicating the keys and values of form fields. Will be automatically formatted into a URL-encoded form body.</param>
  804. <returns>
  805. <para>A UnityWebRequest configured to send form data to uri via POST.</para>
  806. </returns>
  807. </member>
  808. <member name="M:UnityEngine.Networking.UnityWebRequest.Put(System.String,System.Byte[])">
  809. <summary>
  810. <para>Creates a UnityWebRequest configured to upload raw data to a remote server via HTTP PUT.</para>
  811. </summary>
  812. <param name="uri">The URI to which the data will be sent.</param>
  813. <param name="bodyData">The data to transmit to the remote server.
  814. If a string, the string will be converted to raw bytes via &lt;a href="http:msdn.microsoft.comen-uslibrarysystem.text.encoding.utf8"&gt;System.Text.Encoding.UTF8&lt;a&gt;.</param>
  815. <returns>
  816. <para>A UnityWebRequest configured to transmit bodyData to uri via HTTP PUT.</para>
  817. </returns>
  818. </member>
  819. <member name="M:UnityEngine.Networking.UnityWebRequest.Put(System.String,System.String)">
  820. <summary>
  821. <para>Creates a UnityWebRequest configured to upload raw data to a remote server via HTTP PUT.</para>
  822. </summary>
  823. <param name="uri">The URI to which the data will be sent.</param>
  824. <param name="bodyData">The data to transmit to the remote server.
  825. If a string, the string will be converted to raw bytes via &lt;a href="http:msdn.microsoft.comen-uslibrarysystem.text.encoding.utf8"&gt;System.Text.Encoding.UTF8&lt;a&gt;.</param>
  826. <returns>
  827. <para>A UnityWebRequest configured to transmit bodyData to uri via HTTP PUT.</para>
  828. </returns>
  829. </member>
  830. <member name="M:UnityEngine.Networking.UnityWebRequest.Send">
  831. <summary>
  832. <para>Begin communicating with the remote server.</para>
  833. </summary>
  834. <returns>
  835. <para>An AsyncOperation indicating the progress/completion state of the UnityWebRequest. Yield this object to wait until the UnityWebRequest is done.</para>
  836. </returns>
  837. </member>
  838. <member name="M:UnityEngine.Networking.UnityWebRequest.SendWebRequest">
  839. <summary>
  840. <para>Begin communicating with the remote server.</para>
  841. </summary>
  842. </member>
  843. <member name="M:UnityEngine.Networking.UnityWebRequest.SerializeFormSections(System.Collections.Generic.List`1&lt;UnityEngine.Networking.IMultipartFormSection&gt;,System.Byte[])">
  844. <summary>
  845. <para>Converts a List of IMultipartFormSection objects into a byte array containing raw multipart form data.</para>
  846. </summary>
  847. <param name="multipartFormSections">A List of IMultipartFormSection objects.</param>
  848. <param name="boundary">A unique boundary string to separate the form sections.</param>
  849. <returns>
  850. <para>A byte array of raw multipart form data.</para>
  851. </returns>
  852. </member>
  853. <member name="M:UnityEngine.Networking.UnityWebRequest.SerializeSimpleForm(System.Collections.Generic.Dictionary`2&lt;System.String,System.String&gt;)">
  854. <summary>
  855. <para>Serialize a dictionary of strings into a byte array containing URL-encoded UTF8 characters.</para>
  856. </summary>
  857. <param name="formFields">A dictionary containing the form keys and values to serialize.</param>
  858. <returns>
  859. <para>A byte array containing the serialized form. The form's keys and values have been URL-encoded.</para>
  860. </returns>
  861. </member>
  862. <member name="M:UnityEngine.Networking.UnityWebRequest.SetRequestHeader(System.String,System.String)">
  863. <summary>
  864. <para>Set a HTTP request header to a custom value.</para>
  865. </summary>
  866. <param name="name">The key of the header to be set. Case-sensitive.</param>
  867. <param name="value">The header's intended value.</param>
  868. </member>
  869. <member name="M:UnityEngine.Networking.UnityWebRequest.UnEscapeURL(System.String)">
  870. <summary>
  871. <para>Converts URL-friendly escape sequences back to normal text.</para>
  872. </summary>
  873. <param name="s">A string containing escaped characters.</param>
  874. <param name="e">The text encoding to use.</param>
  875. </member>
  876. <member name="M:UnityEngine.Networking.UnityWebRequest.UnEscapeURL(System.String,System.Text.Encoding)">
  877. <summary>
  878. <para>Converts URL-friendly escape sequences back to normal text.</para>
  879. </summary>
  880. <param name="s">A string containing escaped characters.</param>
  881. <param name="e">The text encoding to use.</param>
  882. </member>
  883. <member name="T:UnityEngine.Networking.UnityWebRequestAsyncOperation">
  884. <summary>
  885. <para>Asynchronous operation object returned from UnityWebRequest.SendWebRequest().
  886. You can yield until it continues, register an event handler with AsyncOperation.completed, or manually check whether it's done (AsyncOperation.isDone) or progress (AsyncOperation.progress).</para>
  887. </summary>
  888. </member>
  889. <member name="P:UnityEngine.Networking.UnityWebRequestAsyncOperation.webRequest">
  890. <summary>
  891. <para>Returns the associated UnityWebRequest that created the operation.</para>
  892. </summary>
  893. </member>
  894. <member name="T:UnityEngine.Networking.UploadHandler">
  895. <summary>
  896. <para>Helper object for UnityWebRequests. Manages the buffering and transmission of body data during HTTP requests.</para>
  897. </summary>
  898. </member>
  899. <member name="P:UnityEngine.Networking.UploadHandler.contentType">
  900. <summary>
  901. <para>Determines the default Content-Type header which will be transmitted with the outbound HTTP request.</para>
  902. </summary>
  903. </member>
  904. <member name="P:UnityEngine.Networking.UploadHandler.data">
  905. <summary>
  906. <para>The raw data which will be transmitted to the remote server as body data. (Read Only)</para>
  907. </summary>
  908. </member>
  909. <member name="P:UnityEngine.Networking.UploadHandler.progress">
  910. <summary>
  911. <para>Returns the proportion of data uploaded to the remote server compared to the total amount of data to upload. (Read Only)</para>
  912. </summary>
  913. </member>
  914. <member name="M:UnityEngine.Networking.UploadHandler.Dispose">
  915. <summary>
  916. <para>Signals that this UploadHandler is no longer being used, and should clean up any resources it is using.</para>
  917. </summary>
  918. </member>
  919. <member name="T:UnityEngine.Networking.UploadHandlerFile">
  920. <summary>
  921. <para>A specialized UploadHandler that reads data from a given file and sends raw bytes to the server as the request body.</para>
  922. </summary>
  923. </member>
  924. <member name="M:UnityEngine.Networking.UploadHandlerFile.#ctor(System.String)">
  925. <summary>
  926. <para>Create a new upload handler to send data from the given file to the server.</para>
  927. </summary>
  928. <param name="filePath">A file containing data to send.</param>
  929. </member>
  930. <member name="T:UnityEngine.Networking.UploadHandlerRaw">
  931. <summary>
  932. <para>A general-purpose UploadHandler subclass, using a native-code memory buffer.</para>
  933. </summary>
  934. </member>
  935. <member name="M:UnityEngine.Networking.UploadHandlerRaw.#ctor(System.Byte[])">
  936. <summary>
  937. <para>General constructor. Contents of the input argument are copied into a native buffer.</para>
  938. </summary>
  939. <param name="data">Raw data to transmit to the remote server.</param>
  940. </member>
  941. <member name="A:UnityEngine.UnityWebRequestModule">
  942. <summary>
  943. <para>The UnityWebRequest module lets you communicate with http services.</para>
  944. </summary>
  945. </member>
  946. <member name="T:UnityEngine.WWWForm">
  947. <summary>
  948. <para>Helper class to generate form data to post to web servers using the UnityWebRequest or WWW classes.</para>
  949. </summary>
  950. </member>
  951. <member name="P:UnityEngine.WWWForm.data">
  952. <summary>
  953. <para>(Read Only) The raw data to pass as the POST request body when sending the form.</para>
  954. </summary>
  955. </member>
  956. <member name="P:UnityEngine.WWWForm.headers">
  957. <summary>
  958. <para>(Read Only) Returns the correct request headers for posting the form using the WWW class.</para>
  959. </summary>
  960. </member>
  961. <member name="M:UnityEngine.WWWForm.AddBinaryData(System.String,System.Byte[])">
  962. <summary>
  963. <para>Add binary data to the form.</para>
  964. </summary>
  965. <param name="fieldName"></param>
  966. <param name="contents"></param>
  967. <param name="fileName"></param>
  968. <param name="mimeType"></param>
  969. </member>
  970. <member name="M:UnityEngine.WWWForm.AddBinaryData(System.String,System.Byte[],System.String)">
  971. <summary>
  972. <para>Add binary data to the form.</para>
  973. </summary>
  974. <param name="fieldName"></param>
  975. <param name="contents"></param>
  976. <param name="fileName"></param>
  977. <param name="mimeType"></param>
  978. </member>
  979. <member name="M:UnityEngine.WWWForm.AddBinaryData(System.String,System.Byte[],System.String,System.String)">
  980. <summary>
  981. <para>Add binary data to the form.</para>
  982. </summary>
  983. <param name="fieldName"></param>
  984. <param name="contents"></param>
  985. <param name="fileName"></param>
  986. <param name="mimeType"></param>
  987. </member>
  988. <member name="M:UnityEngine.WWWForm.AddField(System.String,System.String)">
  989. <summary>
  990. <para>Add a simple field to the form.</para>
  991. </summary>
  992. <param name="fieldName"></param>
  993. <param name="value"></param>
  994. <param name="e"></param>
  995. </member>
  996. <member name="M:UnityEngine.WWWForm.AddField(System.String,System.String,System.Text.Encoding)">
  997. <summary>
  998. <para>Add a simple field to the form.</para>
  999. </summary>
  1000. <param name="fieldName"></param>
  1001. <param name="value"></param>
  1002. <param name="e"></param>
  1003. </member>
  1004. <member name="M:UnityEngine.WWWForm.AddField(System.String,System.Int32)">
  1005. <summary>
  1006. <para>Adds a simple field to the form.</para>
  1007. </summary>
  1008. <param name="fieldName"></param>
  1009. <param name="i"></param>
  1010. </member>
  1011. <member name="M:UnityEngine.WWWForm.#ctor">
  1012. <summary>
  1013. <para>Creates an empty WWWForm object.</para>
  1014. </summary>
  1015. </member>
  1016. </members>
  1017. </doc>