From 2fbecc0e2678a391686b74b5f0f6a2ea3ffdcf18 Mon Sep 17 00:00:00 2001 From: Hieromon Ikasamo Date: Sun, 14 Apr 2019 00:04:23 +0900 Subject: [PATCH] Supports AutoConnectFile --- mkdocs/apiaux.md | 1 + 1 file changed, 1 insertion(+) diff --git a/mkdocs/apiaux.md b/mkdocs/apiaux.md index 5f8e6ac..edd6fcc 100644 --- a/mkdocs/apiaux.md +++ b/mkdocs/apiaux.md @@ -193,6 +193,7 @@ void onUpload(PageBuilder::UploadFuncT uploadFunc) Register the upload handler of the AutoConnectAux.
**Parameters**
+
TSpecifies a class name of the custom uploader inherited from [AutoConnectUploadHandler](acupload.md#upload-handler-base-class) class. Refer to the [appendix](acupload.md#to-upload-to-a-device-other-than-flash-or-sd) for details.
handlerSpecifies the custom uploader inherited from [AutoConnectUploadHandler](acupload.md#upload-handler-base-class) class. Refer to the [appendix](acupload.md#to-upload-to-a-device-other-than-flash-or-sd) for details.
uploadFuncA function that behaves when request to upload with the AutoConnectAux page. UploadFuncT type is defined by the following declaration.

`void(const String&, const HTTPUpload&)`

A data structure of the upload file as HTTPUpload. It is defined in the ESP8266WebServer (the WebServer for ESP32) library as follows: