DownloadableFile Constructor |
https://www.emgu.com
Create a downloadable file from the url
Namespace:
Emgu.Models
Assembly:
Emgu.TF.Lite.Models (in Emgu.TF.Lite.Models.dll) Version: 2.19.0.1709+574f567263f3c76bb77304b9eeb79ab6660ba101
Syntaxpublic DownloadableFile(
string url,
string localSubfolder,
string sha256Hash = null
)
Public Sub New (
url As String,
localSubfolder As String,
Optional sha256Hash As String = Nothing
)
public:
DownloadableFile(
String^ url,
String^ localSubfolder,
String^ sha256Hash = nullptr
)
new :
url : string *
localSubfolder : string *
?sha256Hash : string
(* Defaults:
let _sha256Hash = defaultArg sha256Hash null
*)
-> DownloadableFile
Parameters
- url
- Type: SystemString
The url where the file can be downloaded from - localSubfolder
- Type: SystemString
The sub-folder to store the model - sha256Hash (Optional)
- Type: SystemString
The SHA256 has for the file.
See Also