Would you like a WinRT version of Rebex Secure Mail or Rebex File Server? Please let us know!
Download Rebex Total Pack Installer with experimental libraries »
(Starting with Release 2016 R1 experimental libraries are included in standard distribution packages.)Most functionality should work. One notable exception is certificate verification used by FTP/SSL. Certificate API was not available to Windows Store Apps on Windows 8.0 and the components still reflect this. Although a certificate API was added in Windows 8.1, this is not yet utilized by this experimental version. As a workaround, implement a custom certificate handler using Ftp object's ValidatingCertificate event if you wish to use FTP over SSL in a secure manner.
There are three sets of assemblies:
Supports Windows 8.0 and 8.1, suitable for Windows Store Apps.
Supports Windows 8.1 and Windows Phone 8.1, suitable for Portable Apps, Windows Store 8.1 Apps and Windows Phone 8.1 Apps.
Supports Windows 10, Windows 10 Mobile and Windows 10 IoT.
using Rebex.Net; ... using (var client = new Sftp()) { // connect and log on await client.ConnectAsync("test.rebex.net", Sftp.DefaultPort); await client.LoginAsync("demo", "password"); // download a file await client.GetFileAsync("/readme.txt", "C:\\temp\\readme.txt"); }
API of WinRT version is almost identical to the Rebex components API for other platforms. For more sample code see the links below.
Do you have any questions, would you like to discuss anything or do you have any kind of feedback? Please let us know!
Contact us at support@rebex.net or forum.rebex.net.