@@ -201,7 +201,7 @@ private void RebootBootloaderThread()
201
201
/// </summary>
202
202
/// <param name="fileOnDevice">Path to file to pull from device</param>
203
203
/// <param name="destinationDirectory">Directory on local computer to pull file to</param>
204
- /// /// <param name="timeout">The timeout for this operation (Default = -1)</param>
204
+ /// /// <param name="timeout">The timeout for this operation in milliseconds (Default = -1)</param>
205
205
/// <returns>True if file is pulled, false if pull failed</returns>
206
206
public bool PullFile ( string fileOnDevice , string destinationDirectory , int timeout = Command . DEFAULT_TIMEOUT )
207
207
{
@@ -214,7 +214,7 @@ public bool PullFile(string fileOnDevice, string destinationDirectory, int timeo
214
214
/// </summary>
215
215
/// <param name="filePath">The path to the file on the computer you want to push</param>
216
216
/// <param name="destinationFilePath">The desired full path of the file after pushing to the device (including file name and extension)</param>
217
- /// <param name="timeout">The timeout for this operation (Default = -1)</param>
217
+ /// <param name="timeout">The timeout for this operation in milliseconds (Default = -1)</param>
218
218
/// <returns>If the push was successful</returns>
219
219
public bool PushFile ( string filePath , string destinationFilePath , int timeout = Command . DEFAULT_TIMEOUT )
220
220
{
@@ -227,6 +227,7 @@ public bool PushFile(string filePath, string destinationFilePath, int timeout =
227
227
/// </summary>
228
228
/// <param name="location">Path to folder to pull from device</param>
229
229
/// <param name="destination">Directory on local computer to pull file to</param>
230
+ /// <param name="timeout">The timeout for this operation in milliseconds (Default = -1)</param>
230
231
/// <returns>True if directory is pulled, false if pull failed</returns>
231
232
public bool PullDirectory ( string location , string destination , int timeout = Command . DEFAULT_TIMEOUT )
232
233
{
@@ -238,6 +239,7 @@ public bool PullDirectory(string location, string destination, int timeout = Com
238
239
/// Installs an application from the local computer to the Android device
239
240
/// </summary>
240
241
/// <param name="location">Full path of apk on computer</param>
242
+ /// <param name="timeout">The timeout for this operation in milliseconds (Default = -1)</param>
241
243
/// <returns>True if install is successful, False if install fails for any reason</returns>
242
244
public bool InstallApk ( string location , int timeout = Command . DEFAULT_TIMEOUT )
243
245
{
0 commit comments