Uploads a file from the target.
Namespace:
Quanser.Targets
Assembly:
Quanser.Targets (in Quanser.Targets.dll)
Syntax
Visual Basic (Declaration) |
---|
Public Function UploadFile ( _
target_path As String, _
callback As IUpload, _
context As Object _
) As Integer |
C# |
---|
public int UploadFile(
string target_path,
IUpload callback,
Object context
) |
Visual C++ |
---|
public:
int UploadFile(
String^ target_path,
IUpload^ callback,
Object^ context
) |
JavaScript |
---|
function uploadFile(target_path, callback, context); |
Parameters
- target_path
- Type: System..::.String
The path to the file on the target.
- callback
- Type: Quanser.Targets..::.IUpload
The interface whose methods are invoked as the file is uploaded.
- context
- Type: System..::.Object
An arbitrary value passed to the callback methods.
Return Value
Remarks
See Also