Skip to content

Commit 7b7e2ae

Browse files
Update to new version :
1 parent b36440a commit 7b7e2ae

30 files changed

+89
-59
lines changed
512 Bytes
Binary file not shown.

Libraries/net35/UnderAutomation.Fanuc.xml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -840,7 +840,7 @@
840840
<param name="progress">Track upload progress. The value provided is in the range 0 to 100, indicating the percentage of the file transferred. If the progress is indeterminate, -1 is sent.</param>
841841
<returns>If true then the file was uploaded, false otherwise.</returns>
842842
</member>
843-
<member name="M:UnderAutomation.Fanuc.Ftp.Internal.FtpDirectFileHandling.UploadFilesToController(System.String[],System.String)">
843+
<member name="M:UnderAutomation.Fanuc.Ftp.Internal.FtpDirectFileHandling.UploadFilesToController(System.String[],System.String,UnderAutomation.Fanuc.Ftp.Internal.FtpDirectFileHandling.OnProgressDelegate)">
844844
<summary>
845845
Uploads the given file paths to a single folder on the controller.
846846
All files are placed directly into the given folder regardless of their path on the local filesystem.
@@ -849,6 +849,7 @@
849849
</summary>
850850
<param name="localPaths">The full or relative paths to the files on the local file system. Files can be from multiple folders.</param>
851851
<param name="remoteDir">The full or relative path to the directory that files will be uploaded on the controller</param>
852+
<param name="progress">Track upload progress. The value provided is in the range 0 to 100, indicating the percentage of the file transferred. If the progress is indeterminate, -1 is sent.</param>
852853
<returns>The list of files that were uploaded successfully</returns>
853854
</member>
854855
<member name="M:UnderAutomation.Fanuc.Ftp.Internal.FtpDirectFileHandling.DownloadFileFromController(System.Byte[]@,System.String,UnderAutomation.Fanuc.Ftp.Internal.FtpDirectFileHandling.OnProgressDelegate)">
@@ -885,14 +886,15 @@
885886
<param name="progress">Provide an implementation of IProgress to track download progress. The value provided is in the range 0 to 100, indicating the percentage of the file transferred. If the progress is indeterminate, -1 is sent.</param>
886887
<returns>If true then the file was downloaded, false otherwise.</returns>
887888
</member>
888-
<member name="M:UnderAutomation.Fanuc.Ftp.Internal.FtpDirectFileHandling.DownloadFilesFromController(System.String,System.String[])">
889+
<member name="M:UnderAutomation.Fanuc.Ftp.Internal.FtpDirectFileHandling.DownloadFilesFromController(System.String,System.String[],UnderAutomation.Fanuc.Ftp.Internal.FtpDirectFileHandling.OnProgressDelegate)">
889890
<summary>
890891
Downloads the specified files into a local single directory.
891892
High-level API that takes care of various edge cases internally.
892893
Supports very large files since it downloads data in chunks.
893894
</summary>
894895
<param name="localDir">The full or relative path to the directory that files will be downloaded into.</param>
895896
<param name="remotePaths">The full paths to the files on the controller</param>
897+
<param name="progress">Track upload progress. The value provided is in the range 0 to 100, indicating the percentage of the file transferred. If the progress is indeterminate, -1 is sent.</param>
896898
<returns>The list of all local files downloaded</returns>
897899
</member>
898900
<member name="M:UnderAutomation.Fanuc.Ftp.Internal.FtpDirectFileHandling.FileExists(System.String)">
@@ -38147,7 +38149,7 @@
3814738149
Controls if the high-level API downloads files in Binary or ASCII mode.
3814838150
</summary>
3814938151
</member>
38150-
<member name="M:UnderAutomation.Fanuc.Ftp.FluentFTP.FtpClient.UploadFiles(System.Collections.Generic.IEnumerable{System.String},System.String,UnderAutomation.Fanuc.Ftp.FluentFTP.FtpExists,System.Boolean,UnderAutomation.Fanuc.Ftp.FluentFTP.FtpVerify,UnderAutomation.Fanuc.Ftp.FluentFTP.FtpError)">
38152+
<member name="M:UnderAutomation.Fanuc.Ftp.FluentFTP.FtpClient.UploadFiles(System.Collections.Generic.IEnumerable{System.String},System.String,UnderAutomation.Fanuc.Ftp.FluentFTP.FtpExists,System.Boolean,UnderAutomation.Fanuc.Ftp.FluentFTP.FtpVerify,UnderAutomation.Fanuc.Ftp.FluentFTP.FtpError,IProgress{System.Double})">
3815138153
<summary>
3815238154
Uploads the given file paths to a single folder on the server.
3815338155
All files are placed directly into the given folder regardless of their path on the local filesystem.
@@ -38171,7 +38173,7 @@
3817138173
to propagate from this method.
3817238174
</remarks>
3817338175
</member>
38174-
<member name="M:UnderAutomation.Fanuc.Ftp.FluentFTP.FtpClient.DownloadFiles(System.String,System.Collections.Generic.IEnumerable{System.String},System.Boolean,UnderAutomation.Fanuc.Ftp.FluentFTP.FtpVerify,UnderAutomation.Fanuc.Ftp.FluentFTP.FtpError)">
38176+
<member name="M:UnderAutomation.Fanuc.Ftp.FluentFTP.FtpClient.DownloadFiles(System.String,System.Collections.Generic.IEnumerable{System.String},System.Boolean,UnderAutomation.Fanuc.Ftp.FluentFTP.FtpVerify,UnderAutomation.Fanuc.Ftp.FluentFTP.FtpError,IProgress{System.Double})">
3817538177
<summary>
3817638178
Downloads the specified files into a local single directory.
3817738179
High-level API that takes care of various edge cases internally.
512 Bytes
Binary file not shown.

Libraries/net40/UnderAutomation.Fanuc.xml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -840,7 +840,7 @@
840840
<param name="progress">Track upload progress. The value provided is in the range 0 to 100, indicating the percentage of the file transferred. If the progress is indeterminate, -1 is sent.</param>
841841
<returns>If true then the file was uploaded, false otherwise.</returns>
842842
</member>
843-
<member name="M:UnderAutomation.Fanuc.Ftp.Internal.FtpDirectFileHandling.UploadFilesToController(System.String[],System.String)">
843+
<member name="M:UnderAutomation.Fanuc.Ftp.Internal.FtpDirectFileHandling.UploadFilesToController(System.String[],System.String,UnderAutomation.Fanuc.Ftp.Internal.FtpDirectFileHandling.OnProgressDelegate)">
844844
<summary>
845845
Uploads the given file paths to a single folder on the controller.
846846
All files are placed directly into the given folder regardless of their path on the local filesystem.
@@ -849,6 +849,7 @@
849849
</summary>
850850
<param name="localPaths">The full or relative paths to the files on the local file system. Files can be from multiple folders.</param>
851851
<param name="remoteDir">The full or relative path to the directory that files will be uploaded on the controller</param>
852+
<param name="progress">Track upload progress. The value provided is in the range 0 to 100, indicating the percentage of the file transferred. If the progress is indeterminate, -1 is sent.</param>
852853
<returns>The list of files that were uploaded successfully</returns>
853854
</member>
854855
<member name="M:UnderAutomation.Fanuc.Ftp.Internal.FtpDirectFileHandling.DownloadFileFromController(System.Byte[]@,System.String,UnderAutomation.Fanuc.Ftp.Internal.FtpDirectFileHandling.OnProgressDelegate)">
@@ -885,14 +886,15 @@
885886
<param name="progress">Provide an implementation of IProgress to track download progress. The value provided is in the range 0 to 100, indicating the percentage of the file transferred. If the progress is indeterminate, -1 is sent.</param>
886887
<returns>If true then the file was downloaded, false otherwise.</returns>
887888
</member>
888-
<member name="M:UnderAutomation.Fanuc.Ftp.Internal.FtpDirectFileHandling.DownloadFilesFromController(System.String,System.String[])">
889+
<member name="M:UnderAutomation.Fanuc.Ftp.Internal.FtpDirectFileHandling.DownloadFilesFromController(System.String,System.String[],UnderAutomation.Fanuc.Ftp.Internal.FtpDirectFileHandling.OnProgressDelegate)">
889890
<summary>
890891
Downloads the specified files into a local single directory.
891892
High-level API that takes care of various edge cases internally.
892893
Supports very large files since it downloads data in chunks.
893894
</summary>
894895
<param name="localDir">The full or relative path to the directory that files will be downloaded into.</param>
895896
<param name="remotePaths">The full paths to the files on the controller</param>
897+
<param name="progress">Track upload progress. The value provided is in the range 0 to 100, indicating the percentage of the file transferred. If the progress is indeterminate, -1 is sent.</param>
896898
<returns>The list of all local files downloaded</returns>
897899
</member>
898900
<member name="M:UnderAutomation.Fanuc.Ftp.Internal.FtpDirectFileHandling.FileExists(System.String)">
@@ -38147,7 +38149,7 @@
3814738149
Controls if the high-level API downloads files in Binary or ASCII mode.
3814838150
</summary>
3814938151
</member>
38150-
<member name="M:UnderAutomation.Fanuc.Ftp.FluentFTP.FtpClient.UploadFiles(System.Collections.Generic.IEnumerable{System.String},System.String,UnderAutomation.Fanuc.Ftp.FluentFTP.FtpExists,System.Boolean,UnderAutomation.Fanuc.Ftp.FluentFTP.FtpVerify,UnderAutomation.Fanuc.Ftp.FluentFTP.FtpError)">
38152+
<member name="M:UnderAutomation.Fanuc.Ftp.FluentFTP.FtpClient.UploadFiles(System.Collections.Generic.IEnumerable{System.String},System.String,UnderAutomation.Fanuc.Ftp.FluentFTP.FtpExists,System.Boolean,UnderAutomation.Fanuc.Ftp.FluentFTP.FtpVerify,UnderAutomation.Fanuc.Ftp.FluentFTP.FtpError,IProgress{System.Double})">
3815138153
<summary>
3815238154
Uploads the given file paths to a single folder on the server.
3815338155
All files are placed directly into the given folder regardless of their path on the local filesystem.
@@ -38171,7 +38173,7 @@
3817138173
to propagate from this method.
3817238174
</remarks>
3817338175
</member>
38174-
<member name="M:UnderAutomation.Fanuc.Ftp.FluentFTP.FtpClient.DownloadFiles(System.String,System.Collections.Generic.IEnumerable{System.String},System.Boolean,UnderAutomation.Fanuc.Ftp.FluentFTP.FtpVerify,UnderAutomation.Fanuc.Ftp.FluentFTP.FtpError)">
38176+
<member name="M:UnderAutomation.Fanuc.Ftp.FluentFTP.FtpClient.DownloadFiles(System.String,System.Collections.Generic.IEnumerable{System.String},System.Boolean,UnderAutomation.Fanuc.Ftp.FluentFTP.FtpVerify,UnderAutomation.Fanuc.Ftp.FluentFTP.FtpError,IProgress{System.Double})">
3817538177
<summary>
3817638178
Downloads the specified files into a local single directory.
3817738179
High-level API that takes care of various edge cases internally.
512 Bytes
Binary file not shown.

Libraries/net45/UnderAutomation.Fanuc.xml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -840,7 +840,7 @@
840840
<param name="progress">Track upload progress. The value provided is in the range 0 to 100, indicating the percentage of the file transferred. If the progress is indeterminate, -1 is sent.</param>
841841
<returns>If true then the file was uploaded, false otherwise.</returns>
842842
</member>
843-
<member name="M:UnderAutomation.Fanuc.Ftp.Internal.FtpDirectFileHandling.UploadFilesToController(System.String[],System.String)">
843+
<member name="M:UnderAutomation.Fanuc.Ftp.Internal.FtpDirectFileHandling.UploadFilesToController(System.String[],System.String,UnderAutomation.Fanuc.Ftp.Internal.FtpDirectFileHandling.OnProgressDelegate)">
844844
<summary>
845845
Uploads the given file paths to a single folder on the controller.
846846
All files are placed directly into the given folder regardless of their path on the local filesystem.
@@ -849,6 +849,7 @@
849849
</summary>
850850
<param name="localPaths">The full or relative paths to the files on the local file system. Files can be from multiple folders.</param>
851851
<param name="remoteDir">The full or relative path to the directory that files will be uploaded on the controller</param>
852+
<param name="progress">Track upload progress. The value provided is in the range 0 to 100, indicating the percentage of the file transferred. If the progress is indeterminate, -1 is sent.</param>
852853
<returns>The list of files that were uploaded successfully</returns>
853854
</member>
854855
<member name="M:UnderAutomation.Fanuc.Ftp.Internal.FtpDirectFileHandling.DownloadFileFromController(System.Byte[]@,System.String,UnderAutomation.Fanuc.Ftp.Internal.FtpDirectFileHandling.OnProgressDelegate)">
@@ -885,14 +886,15 @@
885886
<param name="progress">Provide an implementation of IProgress to track download progress. The value provided is in the range 0 to 100, indicating the percentage of the file transferred. If the progress is indeterminate, -1 is sent.</param>
886887
<returns>If true then the file was downloaded, false otherwise.</returns>
887888
</member>
888-
<member name="M:UnderAutomation.Fanuc.Ftp.Internal.FtpDirectFileHandling.DownloadFilesFromController(System.String,System.String[])">
889+
<member name="M:UnderAutomation.Fanuc.Ftp.Internal.FtpDirectFileHandling.DownloadFilesFromController(System.String,System.String[],UnderAutomation.Fanuc.Ftp.Internal.FtpDirectFileHandling.OnProgressDelegate)">
889890
<summary>
890891
Downloads the specified files into a local single directory.
891892
High-level API that takes care of various edge cases internally.
892893
Supports very large files since it downloads data in chunks.
893894
</summary>
894895
<param name="localDir">The full or relative path to the directory that files will be downloaded into.</param>
895896
<param name="remotePaths">The full paths to the files on the controller</param>
897+
<param name="progress">Track upload progress. The value provided is in the range 0 to 100, indicating the percentage of the file transferred. If the progress is indeterminate, -1 is sent.</param>
896898
<returns>The list of all local files downloaded</returns>
897899
</member>
898900
<member name="M:UnderAutomation.Fanuc.Ftp.Internal.FtpDirectFileHandling.FileExists(System.String)">
@@ -38147,7 +38149,7 @@
3814738149
Controls if the high-level API downloads files in Binary or ASCII mode.
3814838150
</summary>
3814938151
</member>
38150-
<member name="M:UnderAutomation.Fanuc.Ftp.FluentFTP.FtpClient.UploadFiles(System.Collections.Generic.IEnumerable{System.String},System.String,UnderAutomation.Fanuc.Ftp.FluentFTP.FtpExists,System.Boolean,UnderAutomation.Fanuc.Ftp.FluentFTP.FtpVerify,UnderAutomation.Fanuc.Ftp.FluentFTP.FtpError)">
38152+
<member name="M:UnderAutomation.Fanuc.Ftp.FluentFTP.FtpClient.UploadFiles(System.Collections.Generic.IEnumerable{System.String},System.String,UnderAutomation.Fanuc.Ftp.FluentFTP.FtpExists,System.Boolean,UnderAutomation.Fanuc.Ftp.FluentFTP.FtpVerify,UnderAutomation.Fanuc.Ftp.FluentFTP.FtpError,System.IProgress{System.Double})">
3815138153
<summary>
3815238154
Uploads the given file paths to a single folder on the server.
3815338155
All files are placed directly into the given folder regardless of their path on the local filesystem.
@@ -38171,7 +38173,7 @@
3817138173
to propagate from this method.
3817238174
</remarks>
3817338175
</member>
38174-
<member name="M:UnderAutomation.Fanuc.Ftp.FluentFTP.FtpClient.DownloadFiles(System.String,System.Collections.Generic.IEnumerable{System.String},System.Boolean,UnderAutomation.Fanuc.Ftp.FluentFTP.FtpVerify,UnderAutomation.Fanuc.Ftp.FluentFTP.FtpError)">
38176+
<member name="M:UnderAutomation.Fanuc.Ftp.FluentFTP.FtpClient.DownloadFiles(System.String,System.Collections.Generic.IEnumerable{System.String},System.Boolean,UnderAutomation.Fanuc.Ftp.FluentFTP.FtpVerify,UnderAutomation.Fanuc.Ftp.FluentFTP.FtpError,System.IProgress{System.Double})">
3817538177
<summary>
3817638178
Downloads the specified files into a local single directory.
3817738179
High-level API that takes care of various edge cases internally.
512 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)