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="cancellationToken">The <see cref="CancellationToken"/> to observe.</param>
588
+
/// <returns>A <see cref="Task"/> that represents the asynchronous download operation.</returns>
589
+
/// <exception cref="ArgumentNullException"><paramref name="output"/> or <paramref name="path"/> is <see langword="null"/>.</exception>
590
+
/// <exception cref="ArgumentException"><paramref name="path"/> is empty or contains only whitespace characters.</exception>
591
+
/// <exception cref="SshConnectionException">Client is not connected.</exception>
592
+
/// <exception cref="SftpPermissionDeniedException">Permission to perform the operation was denied by the remote host. <para>-or-</para> An SSH command was denied by the server.</exception>
593
+
/// <exception cref="SftpPathNotFoundException"><paramref name="path"/> was not found on the remote host.</exception>
594
+
/// <exception cref="SshException">An SSH error where <see cref="Exception.Message" /> is the message from the remote host.</exception>
595
+
/// <exception cref="ObjectDisposedException">The method was called after the client was disposed.</exception>
/// <param name="cancellationToken">The <see cref="CancellationToken"/> to observe.</param>
1160
+
/// <returns>A <see cref="Task"/> that represents the asynchronous upload operation.</returns>
1161
+
/// <exception cref="ArgumentNullException"><paramref name="input"/> or <paramref name="path"/> is <see langword="null"/>.</exception>
1162
+
/// <exception cref="ArgumentException"><paramref name="path" /> is empty or contains only whitespace characters.</exception>
1163
+
/// <exception cref="SshConnectionException">Client is not connected.</exception>
1164
+
/// <exception cref="SftpPermissionDeniedException">Permission to upload the file was denied by the remote host. <para>-or-</para> An SSH command was denied by the server.</exception>
1165
+
/// <exception cref="SshException">An SSH error where <see cref="Exception.Message" /> is the message from the remote host.</exception>
1166
+
/// <exception cref="ObjectDisposedException">The method was called after the client was disposed.</exception>
/// <param name="cancellationToken">The <see cref="CancellationToken"/> to observe.</param>
1143
1177
/// <returns>A <see cref="Task"/> that represents the asynchronous upload operation.</returns>
1144
1178
/// <exception cref="ArgumentNullException"><paramref name="input"/> or <paramref name="path"/> is <see langword="null"/>.</exception>
@@ -1147,7 +1181,7 @@ public interface ISftpClient : IBaseClient
1147
1181
/// <exception cref="SftpPermissionDeniedException">Permission to upload the file was denied by the remote host. <para>-or-</para> An SSH command was denied by the server.</exception>
1148
1182
/// <exception cref="SshException">An SSH error where <see cref="Exception.Message" /> is the message from the remote host.</exception>
1149
1183
/// <exception cref="ObjectDisposedException">The method was called after the client was disposed.</exception>
0 commit comments