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>
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>
1160
1177
/// <returns>A <see cref="Task"/> that represents the asynchronous upload operation.</returns>
1161
1178
/// <exception cref="ArgumentNullException"><paramref name="input"/> or <paramref name="path"/> is <see langword="null"/>.</exception>
@@ -1164,7 +1181,7 @@ public interface ISftpClient : IBaseClient
1164
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>
1165
1182
/// <exception cref="SshException">An SSH error where <see cref="Exception.Message" /> is the message from the remote host.</exception>
1166
1183
/// <exception cref="ObjectDisposedException">The method was called after the client was disposed.</exception>
0 commit comments