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
Copy file name to clipboardExpand all lines: src/Renci.SshNet/SftpClient.cs
+12-8
Original file line number
Diff line number
Diff line change
@@ -1801,43 +1801,47 @@ public IEnumerable<string> ReadLines(string path, Encoding encoding)
1801
1801
/// </summary>
1802
1802
/// <param name="path">The file for which to set the access date and time information.</param>
1803
1803
/// <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>
1804
-
[Obsolete("Note: This method currently throws NotImplementedException because it has not yet been implemented.")]
/// Sets the date and time, in coordinated universal time (UTC), that the specified file was last accessed.
1812
1813
/// </summary>
1813
1814
/// <param name="path">The file for which to set the access date and time information.</param>
1814
1815
/// <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>
1815
-
[Obsolete("Note: This method currently throws NotImplementedException because it has not yet been implemented.")]
/// Sets the date and time that the specified file was last written to.
1823
1825
/// </summary>
1824
1826
/// <param name="path">The file for which to set the date and time information.</param>
1825
1827
/// <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>
1826
-
[Obsolete("Note: This method currently throws NotImplementedException because it has not yet been implemented.")]
/// Sets the date and time, in coordinated universal time (UTC), that the specified file was last written to.
1834
1837
/// </summary>
1835
1838
/// <param name="path">The file for which to set the date and time information.</param>
1836
1839
/// <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>
1837
-
[Obsolete("Note: This method currently throws NotImplementedException because it has not yet been implemented.")]
0 commit comments