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
/// <exception cref="ArgumentException">The IAsyncResult object (<paramref name="asyncResult"/>) did not come from the corresponding async method on this type.<para>-or-</para> EndExecute was called multiple times with the same IAsyncResult.</exception>
504
+
/// <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>
/// <exception cref="ArgumentException">The IAsyncResult object (<paramref name="asyncResult"/>) did not come from the corresponding async method on this type.<para>-or-</para> EndExecute was called multiple times with the same IAsyncResult.</exception>
722
+
/// <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>
723
723
/// <exception cref="SshConnectionException">Client is not connected.</exception>
724
724
/// <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>
725
725
/// <exception cref="SftpPathNotFoundException">The path was not found on the remote host.</exception>
/// <exception cref="ArgumentException">The IAsyncResult object (<paramref name="asyncResult" />) did not come from the corresponding async method on this type.<para>-or-</para> EndExecute was called multiple times with the same IAsyncResult.</exception>
947
+
/// <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>
948
948
/// <exception cref="SshConnectionException">Client is not connected.</exception>
949
949
/// <exception cref="SftpPathNotFoundException">The directory of the file was not found on the remote host.</exception>
950
950
/// <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>
@@ -965,7 +965,7 @@ public void EndUploadFile(IAsyncResult asyncResult)
965
965
/// </summary>
966
966
/// <param name="path">The path.</param>
967
967
/// <returns>
968
-
/// A reference to <see cref="SftpFileSytemInformation"/> object that contains file status information.
968
+
/// A <see cref="SftpFileSytemInformation"/> instance that contains file status information.
969
969
/// </returns>
970
970
/// <exception cref="SshConnectionException">Client is not connected.</exception>
971
971
/// <exception cref="ArgumentNullException"><paramref name="path" /> is <b>null</b>.</exception>
@@ -1220,7 +1220,8 @@ public void Delete(string path)
1220
1220
/// </summary>
1221
1221
/// <param name="path">The file or directory for which to obtain access date and time information.</param>
1222
1222
/// <returns>
1223
-
/// A <see cref="DateTime"/> structure set to the date and time that the specified file or directory was last accessed. This value is expressed in local time.
1223
+
/// A <see cref="DateTime"/> structure set to the date and time that the specified file or directory was last accessed.
1224
+
/// This value is expressed in local time.
1224
1225
/// </returns>
1225
1226
/// <exception cref="ArgumentNullException"><paramref name="path"/> is <b>null</b>.</exception>
1226
1227
/// <exception cref="SshConnectionException">Client is not connected.</exception>
@@ -1236,7 +1237,8 @@ public DateTime GetLastAccessTime(string path)
1236
1237
/// </summary>
1237
1238
/// <param name="path">The file or directory for which to obtain access date and time information.</param>
1238
1239
/// <returns>
1239
-
/// A <see cref="DateTime"/> structure set to the date and time that the specified file or directory was last accessed. This value is expressed in UTC time.
1240
+
/// A <see cref="DateTime"/> structure set to the date and time that the specified file or directory was last accessed.
1241
+
/// This value is expressed in UTC time.
1240
1242
/// </returns>
1241
1243
/// <exception cref="ArgumentNullException"><paramref name="path"/> is <b>null</b>.</exception>
1242
1244
/// <exception cref="SshConnectionException">Client is not connected.</exception>
@@ -1252,7 +1254,8 @@ public DateTime GetLastAccessTimeUtc(string path)
1252
1254
/// </summary>
1253
1255
/// <param name="path">The file or directory for which to obtain write date and time information.</param>
1254
1256
/// <returns>
1255
-
/// A <see cref="DateTime"/> structure set to the date and time that the specified file or directory was last written to. This value is expressed in local time.
1257
+
/// A <see cref="DateTime"/> structure set to the date and time that the specified file or directory was last written to.
1258
+
/// This value is expressed in local time.
1256
1259
/// </returns>
1257
1260
/// <exception cref="ArgumentNullException"><paramref name="path"/> is <b>null</b>.</exception>
1258
1261
/// <exception cref="SshConnectionException">Client is not connected.</exception>
@@ -1268,7 +1271,8 @@ public DateTime GetLastWriteTime(string path)
1268
1271
/// </summary>
1269
1272
/// <param name="path">The file or directory for which to obtain write date and time information.</param>
1270
1273
/// <returns>
1271
-
/// A <see cref="DateTime"/> structure set to the date and time that the specified file or directory was last written to. This value is expressed in UTC time.
1274
+
/// A <see cref="DateTime"/> structure set to the date and time that the specified file or directory was last written to.
1275
+
/// This value is expressed in UTC time.
1272
1276
/// </returns>
1273
1277
/// <exception cref="ArgumentNullException"><paramref name="path"/> is <b>null</b>.</exception>
1274
1278
/// <exception cref="SshConnectionException">Client is not connected.</exception>
@@ -1366,7 +1370,7 @@ public SftpFileStream OpenWrite(string path)
1366
1370
}
1367
1371
1368
1372
/// <summary>
1369
-
/// Opens a binary file, reads the contents of the file into a byte array, and then closes the file.
1373
+
/// Opens a binary file, reads the contents of the file into a byte array, and closes the file.
1370
1374
/// </summary>
1371
1375
/// <param name="path">The file to open for reading.</param>
1372
1376
/// <returns>
@@ -1386,7 +1390,7 @@ public byte[] ReadAllBytes(string path)
1386
1390
}
1387
1391
1388
1392
/// <summary>
1389
-
/// Opens a text file, reads all lines of the file using UTF-8 encoding, and then closes the file.
1393
+
/// Opens a text file, reads all lines of the file using UTF-8 encoding, and closes the file.
1390
1394
/// </summary>
1391
1395
/// <param name="path">The file to open for reading.</param>
1392
1396
/// <returns>
@@ -1401,7 +1405,7 @@ public string[] ReadAllLines(string path)
1401
1405
}
1402
1406
1403
1407
/// <summary>
1404
-
/// Opens a file, reads all lines of the file with the specified encoding, and then closes the file.
1408
+
/// Opens a file, reads all lines of the file with the specified encoding, and closes the file.
1405
1409
/// </summary>
1406
1410
/// <param name="path">The file to open for reading.</param>
1407
1411
/// <param name="encoding">The encoding applied to the contents of the file.</param>
@@ -1425,7 +1429,7 @@ public string[] ReadAllLines(string path, Encoding encoding)
1425
1429
}
1426
1430
1427
1431
/// <summary>
1428
-
/// Opens a text file, reads all lines of the file with the UTF-8 encoding, and then closes the file.
1432
+
/// Opens a text file, reads all lines of the file with the UTF-8 encoding, and closes the file.
1429
1433
/// </summary>
1430
1434
/// <param name="path">The file to open for reading.</param>
1431
1435
/// <returns>
@@ -1440,7 +1444,7 @@ public string ReadAllText(string path)
1440
1444
}
1441
1445
1442
1446
/// <summary>
1443
-
/// Opens a file, reads all lines of the file with the specified encoding, and then closes the file.
1447
+
/// Opens a file, reads all lines of the file with the specified encoding, and closes the file.
1444
1448
/// </summary>
1445
1449
/// <param name="path">The file to open for reading.</param>
1446
1450
/// <param name="encoding">The encoding applied to the contents of the file.</param>
/// <exception cref="System.ArgumentException">Either the IAsyncResult object did not come from the corresponding async method on this type, or EndExecute was called multiple times with the same IAsyncResult.</exception>
1835
+
/// <returns>
1836
+
/// A list of uploaded files.
1837
+
/// </returns>
1838
+
/// <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>
1839
+
/// <exception cref="SftpPathNotFoundException">The destination path was not found on the remote host.</exception>
0 commit comments