You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// <param name="remotePath">The path, on the device, of the file to pull.</param>
221
221
/// <param name="stream">A <see cref="Stream"/> that will receive the contents of the file.</param>
222
222
/// <param name="callback">An optional parameter which, when specified, returns progress notifications. The progress is reported as a value between 0 and 100, representing the percentage of the file which has been transferred.</param>
223
+
/// <param name="useV2"><see langword="true"/> if use <see cref="ISyncService.Stat"/>; <see langword="true"/> use <see cref="ISyncService.StatV2"/>.</param>
223
224
/// <param name="cancellationToken">A <see cref="CancellationToken"/> that can be used to cancel the task.</param>
224
225
/// <returns>A <see cref="Task"/> which represents the asynchronous operation.</returns>
226
+
/// <remarks>V2 need Android 8 or above.</remarks>
/// <param name="remotePath">The path, on the device, of the file to pull.</param>
405
408
/// <param name="stream">A <see cref="Stream"/> that will receive the contents of the file.</param>
406
409
/// <param name="progress">An optional parameter which, when specified, returns progress notifications. The progress is reported as a value between 0 and 100, representing the percentage of the file which has been transferred.</param>
410
+
/// <param name="useV2"><see langword="true"/> if use <see cref="ISyncService.Stat"/>; <see langword="true"/> use <see cref="ISyncService.StatV2"/>.</param>
407
411
/// <param name="cancellationToken">A <see cref="CancellationToken"/> that can be used to cancel the task.</param>
408
412
/// <returns>A <see cref="Task"/> which represents the asynchronous operation.</returns>
413
+
/// <remarks>V2 need Android 8 or above.</remarks>
/// <param name="remotePath">The path, on the device, of the file to pull.</param>
182
182
/// <param name="stream">A <see cref="Stream"/> that will receive the contents of the file.</param>
183
183
/// <param name="callback">An optional parameter which, when specified, returns progress notifications. The progress is reported as a value between 0 and 100, representing the percentage of the file which has been transferred.</param>
184
+
/// <param name="useV2"><see langword="true"/> if use <see cref="ISyncService.Stat"/>; <see langword="true"/> use <see cref="ISyncService.StatV2"/>.</param>
184
185
/// <param name="isCancelled">A <see cref="bool"/> that can be used to cancel the task.</param>
186
+
/// <remarks>V2 need Android 8 or above.</remarks>
@@ -337,14 +371,17 @@ public static void InstallMultiplePackage(this IAdbClient client, DeviceData dev
337
371
/// <param name="remotePath">The path, on the device, of the file to pull.</param>
338
372
/// <param name="stream">A <see cref="Stream"/> that will receive the contents of the file.</param>
339
373
/// <param name="progress">An optional parameter which, when specified, returns progress notifications. The progress is reported as a value between 0 and 100, representing the percentage of the file which has been transferred.</param>
374
+
/// <param name="useV2"><see langword="true"/> if use <see cref="Stat"/>; <see langword="true"/> use <see cref="ISyncService.StatV2"/>.</param>
340
375
/// <param name="isCancelled">A <see cref="bool"/> that can be used to cancel the task.</param>
376
+
/// <remarks>V2 need Android 8 or above.</remarks>
0 commit comments