AltarNet3 3.2.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package AltarNet3 --version 3.2.0
NuGet\Install-Package AltarNet3 -Version 3.2.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="AltarNet3" Version="3.2.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add AltarNet3 --version 3.2.0
#r "nuget: AltarNet3, 3.2.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install AltarNet3 as a Cake Addin
#addin nuget:?package=AltarNet3&version=3.2.0

// Install AltarNet3 as a Cake Tool
#tool nuget:?package=AltarNet3&version=3.2.0

AltarNet3 (or AN3 for short) is a library that facilitate the creation of TCP servers/clients, along with UDP. TCP connections can be secured via SSL, with only a few easy steps.

It comes with a powerful FTP manager, taking advantage of .NET 4.5's new asynchronous pattern (Async/Await), featuring cancellable requests and download/upload progress monitoring.

Also comes with a 'single instance' and a 'thread safety' helper.

Product Compatible and additional computed target framework versions.
.NET Framework net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.2.4 3,598 2/11/2014
3.2.3 1,400 2/9/2014
3.2.2 1,359 2/7/2014
3.2.1 1,361 2/2/2014
3.2.0 1,358 1/30/2014
3.1.0 1,407 1/25/2014
3.0.1 1,354 1/9/2014
3.0.0.3 1,429 12/30/2013
3.0.0.2 1,368 12/30/2013
3.0.0.1 1,402 12/30/2013
3.0.0 1,374 12/30/2013

3.2.0.0 :
- Largely improved SSL support;
- Added an SSL Helper class (named SslHelper) with a method to get or create a self-signed certificate (and add it to the local cert store), in one simple line;
- Improved SendFile method for both TCP server and client, with an added asynchronous version;
- Added SendAllFile to TcpServerHandler;
- The method WriteToStreamAsync from TcpFragment is now obsolete, use WriteToStream instead.