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
@@ -338,7 +339,7 @@ public interface ISftpClient : IBaseClient, IDisposable
338
339
/// </para>
339
340
/// <para>
340
341
/// When <paramref name="path"/> refers to an existing file, set <paramref name="canOverride"/> to <c>true</c> to overwrite and truncate that file.
341
-
/// If <paramref name="canOverride"/> is <c>false</c>, the upload will fail and <see cref="EndUploadFile(IAsyncResult)"/> will throw an
342
+
/// If <paramref name="canOverride"/> is <c>false</c>, the upload will fail and <see cref="SftpClient.EndUploadFile(IAsyncResult)"/> will throw an
342
343
/// <see cref="SshException"/>.
343
344
/// </para>
344
345
/// </remarks>
@@ -515,7 +516,7 @@ public interface ISftpClient : IBaseClient, IDisposable
515
516
/// <exception cref="ArgumentException"><paramref name="path" /> is <b>null</b> or contains only whitespace characters.</exception>
516
517
/// <exception cref="SshConnectionException">Client is not connected.</exception>
517
518
/// <exception cref="SftpPermissionDeniedException">Permission to perform the operation was denied by the remote host. <para>-or-</para> A SSH command was denied by the server.</exception>
518
-
/// <exception cref="SftpPathNotFoundException"><paramref name="path"/> was not found on the remote host.</exception>///
519
+
/// <exception cref="SftpPathNotFoundException"><paramref name="path"/> was not found on the remote host.</exception>///
519
520
/// <exception cref="SshException">A SSH error where <see cref="Exception.Message" /> is the message from the remote host.</exception>
520
521
/// <exception cref="ObjectDisposedException">The method was called after the client was disposed.</exception>
521
522
/// <remarks>
@@ -527,7 +528,7 @@ public interface ISftpClient : IBaseClient, IDisposable
527
528
/// Ends an asynchronous file downloading into the stream.
/// <exception cref="ArgumentException">The <see cref="IAsyncResult"/> object did not come from the corresponding async method on this type.<para>-or-</para><see cref="EndDownloadFile(IAsyncResult)"/> was called multiple times with the same <see cref="IAsyncResult"/>.</exception>
531
+
/// <exception cref="ArgumentException">The <see cref="IAsyncResult"/> object did not come from the corresponding async method on this type.<para>-or-</para><see cref="SftpClient.EndDownloadFile(IAsyncResult)"/> was called multiple times with the same <see cref="IAsyncResult"/>.</exception>
531
532
/// <exception cref="SshConnectionException">Client is not connected.</exception>
532
533
/// <exception cref="SftpPermissionDeniedException">Permission to perform the operation was denied by the remote host. <para>-or-</para> A SSH command was denied by the server.</exception>
533
534
/// <exception cref="SftpPathNotFoundException">The path was not found on the remote host.</exception>
@@ -541,7 +542,7 @@ public interface ISftpClient : IBaseClient, IDisposable
541
542
/// <returns>
542
543
/// A list of files.
543
544
/// </returns>
544
-
/// <exception cref="ArgumentException">The <see cref="IAsyncResult"/> object did not come from the corresponding async method on this type.<para>-or-</para><see cref="EndListDirectory(IAsyncResult)"/> was called multiple times with the same <see cref="IAsyncResult"/>.</exception>
545
+
/// <exception cref="ArgumentException">The <see cref="IAsyncResult"/> object did not come from the corresponding async method on this type.<para>-or-</para><see cref="SftpClient.EndListDirectory(IAsyncResult)"/> was called multiple times with the same <see cref="IAsyncResult"/>.</exception>
@@ -551,15 +552,15 @@ public interface ISftpClient : IBaseClient, IDisposable
551
552
/// <returns>
552
553
/// A list of uploaded files.
553
554
/// </returns>
554
-
/// <exception cref="ArgumentException">The <see cref="IAsyncResult"/> object did not come from the corresponding async method on this type.<para>-or-</para><see cref="EndSynchronizeDirectories(IAsyncResult)"/> was called multiple times with the same <see cref="IAsyncResult"/>.</exception>
555
+
/// <exception cref="ArgumentException">The <see cref="IAsyncResult"/> object did not come from the corresponding async method on this type.<para>-or-</para><see cref="SftpClient.EndSynchronizeDirectories(IAsyncResult)"/> was called multiple times with the same <see cref="IAsyncResult"/>.</exception>
555
556
/// <exception cref="SftpPathNotFoundException">The destination path was not found on the remote host.</exception>
/// <exception cref="ArgumentException">The <see cref="IAsyncResult"/> object did not come from the corresponding async method on this type.<para>-or-</para><see cref="EndUploadFile(IAsyncResult)"/> was called multiple times with the same <see cref="IAsyncResult"/>.</exception>
563
+
/// <exception cref="ArgumentException">The <see cref="IAsyncResult"/> object did not come from the corresponding async method on this type.<para>-or-</para><see cref="SftpClient.EndUploadFile(IAsyncResult)"/> was called multiple times with the same <see cref="IAsyncResult"/>.</exception>
563
564
/// <exception cref="SshConnectionException">Client is not connected.</exception>
564
565
/// <exception cref="SftpPathNotFoundException">The directory of the file was not found on the remote host.</exception>
565
566
/// <exception cref="SftpPermissionDeniedException">Permission to upload the file was denied by the remote host. <para>-or-</para> A SSH command was denied by the server.</exception>
@@ -925,6 +926,34 @@ public interface ISftpClient : IBaseClient, IDisposable
925
926
/// <exception cref="ObjectDisposedException">The method was called after the client was disposed.</exception>
/// Sets the date and time the specified file was last accessed.
931
+
/// </summary>
932
+
/// <param name="path">The file for which to set the access date and time information.</param>
933
+
/// <param name="lastAccessTime">A <see cref="DateTime"/> containing the value to set for the last access date and time of path. This value is expressed in local time.</param>
/// Sets the date and time, in coordinated universal time (UTC), that the specified file was last accessed.
938
+
/// </summary>
939
+
/// <param name="path">The file for which to set the access date and time information.</param>
940
+
/// <param name="lastAccessTimeUtc">A <see cref="DateTime"/> containing the value to set for the last access date and time of path. This value is expressed in UTC time.</param>
/// Sets the date and time that the specified file was last written to.
945
+
/// </summary>
946
+
/// <param name="path">The file for which to set the date and time information.</param>
947
+
/// <param name="lastWriteTime">A <see cref="DateTime"/> containing the value to set for the last write date and time of path. This value is expressed in local time.</param>
/// Sets the date and time, in coordinated universal time (UTC), that the specified file was last written to.
952
+
/// </summary>
953
+
/// <param name="path">The file for which to set the date and time information.</param>
954
+
/// <param name="lastWriteTimeUtc">A <see cref="DateTime"/> containing the value to set for the last write date and time of path. This value is expressed in UTC time.</param>
0 commit comments