FileDownloadManagerAddFile Method (String, String, String) |
https://www.emgu.com
Add a file to download
Namespace:
Emgu.Models
Assembly:
Emgu.TF.Lite.Models (in Emgu.TF.Lite.Models.dll) Version: 2.19.0.1709+574f567263f3c76bb77304b9eeb79ab6660ba101
Syntaxpublic void AddFile(
string url,
string localSubfolder,
string sha256Hash = null
)
Public Sub AddFile (
url As String,
localSubfolder As String,
Optional sha256Hash As String = Nothing
)
public:
void AddFile(
String^ url,
String^ localSubfolder,
String^ sha256Hash = nullptr
)
member AddFile :
url : string *
localSubfolder : string *
?sha256Hash : string
(* Defaults:
let _sha256Hash = defaultArg sha256Hash null
*)
-> unit
Parameters
- url
- Type: SystemString
The url of the file to be downloaded - localSubfolder
- Type: SystemString
The local subfolder name to download the model to. - sha256Hash (Optional)
- Type: SystemString
The sha256 hash value for the file
See Also