| StringDownloadResultHandler Delegate |
The type for a handler, called when the download of string finished.
Namespace:
Mastersign.Bench
Assembly:
BenchLib (in BenchLib.dll) Version: 0.22.0.0 (0.22.0.0)
Syntax public delegate void StringDownloadResultHandler(
bool success,
string content
)
Public Delegate Sub StringDownloadResultHandler (
success As Boolean,
content As String
)
Parameters
- success
- Type: SystemBoolean
true if the download was successful; otherwise false. - content
- Type: SystemString
The content of the download or null if the download failed.
See Also