nanoframework.System.Net.Sockets.TcpClient 1.1.74

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
dotnet add package nanoframework.System.Net.Sockets.TcpClient --version 1.1.74
NuGet\Install-Package nanoframework.System.Net.Sockets.TcpClient -Version 1.1.74
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="nanoframework.System.Net.Sockets.TcpClient" Version="1.1.74" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add nanoframework.System.Net.Sockets.TcpClient --version 1.1.74
#r "nuget: nanoframework.System.Net.Sockets.TcpClient, 1.1.74"
#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 nanoframework.System.Net.Sockets.TcpClient as a Cake Addin
#addin nuget:?package=nanoframework.System.Net.Sockets.TcpClient&version=1.1.74

// Install nanoframework.System.Net.Sockets.TcpClient as a Cake Tool
#tool nuget:?package=nanoframework.System.Net.Sockets.TcpClient&version=1.1.74

Quality Gate Status Reliability Rating License NuGet #yourfirstpr Discord

nanoFramework logo


Welcome to the .NET nanoFramework System.Net.Sockets.TcpClient

This API implements the TcpListener and TcpClient classes with a pattern similar to the official .NET equivalent. System.NET.Sockets.TcpClient.

These are wrapper classes for the Socket when using TCP connections. The nanoframework implementation of TcpClient doesn't include the asynchronous methods and the Connected property.

Build status

Component Build Status NuGet Package
nanoFramework.System.Net.Sockets.TcpClient Build Status NuGet

Usage

Important: Obviously this requires a working network connection. Please check the examples with the Network Helpers on how to connect to a network. For example see the Networking sample pack

The TcpListener class provides simple methods for creating a listening socket to accept incoming TCP connections and the TcpClient provides methods for connecting and communicating on a TCP connection.

Samples

Samples for TcpListener and TcpClient are present in the nanoFramework Sample repository.

Listening for incoming connections

The following codes shows how to set up a Listening socket and to accept connections as a TcpClient on the 1234 port.

TcpListener listener = new TcpListener(IPAddress.Any, 1234);

// Start listening for incoming connections
listener.Start();
while (true)
{
    try
    {
        // Wait for incoming connections
        TcpClient client = listener.AcceptTcpClient();

        NetworkStream stream = client.GetStream();

        Byte[] bytes = new Byte[256];        
        int i;

        // Wait for incoming data and echo back
        while((i = stream.Read(bytes, 0, bytes.Length))!=0)
        {
            // Do something with data ?

            stream.Write(bytes, 0, i);
        }

        // Shutdown connection
        client.Close();
    }
    catch(Exception ex)
    {
        Debug.WriteLine($"Exception:-{ex.Message}");
    }
}

If you want to handle more then one simultaneous connection then a separate worker thread can be started.

TcpListener listener = new TcpListener(IPAddress.Any, 1234);

// Start listening for incoming connections with backlog
listener.Start(2);

while (true)
{
    try
    {
        // Wait for incoming connections
        TcpClient client = listener.AcceptTcpClient();

        // Start thread to handle connection
        Thread worker = new Thread(() => WorkerThread(client));
        worker.Start();
    }
    catch(Exception ex)
    {
        Debug.WriteLine($"Exception:-{ex.Message}");
    }
}

Worker Thread for handling the TcpClient connection for TcpListener example.

private static void WorkerThread(TcpClient client)
{
    try
    {
        NetworkStream stream = client.GetStream();

        Byte[] bytes = new Byte[256];        
        int i;

        // Loop reading data until connection closed
        while((i = stream.Read(bytes, 0, bytes.Length))!=0)
        {
            // Do something with data ?

            // Write back received data bytes to stream
            stream.Write(bytes, 0, i);
        }
    }
    catch(Exception ex)
    {
        Debug.WriteLine($"Exception:-{ex.Message}");
    }
    finally
    {
        // Shutdown connection
        client.Close();
    } 
}

TcpClient

The TcpClient can also be used to initiate a connection passing in the hostname/port or IPEndPoint. Maybe connecting to another nanoFramework device which is listening for connections.

TcpClient client = new TcpClient()

try
{
    client.Connect(hostname, port)

    NetworkStream stream = client.GetStream();

    // Write / Read data on stream

    // for example Write 'ABC' and wait for response
    byte[] writeData = new byte[] { 0x41, 0x42, 0x43 };  
    stream.Write(writeData, 0, writeData.Length);

    // Read reply and close
    byte[] buffer = new byte[1024];
    int bytesRead = stream.Read(buffer, 0, buffer.Length);

    // Process read data ?
}
catch(SocketException sx)
{
    Console.WriteLine($"Socket error:{sx.ErrorCode} exception:{sx.Message}");
}
finally
{
    client.Close();
}

For secure connections a SslStream can be used.

client.Connect(HostName, 443);

// Create SSlStream from underlying SOcket
SslStream stream = new SslStream(client.Client);

// Don't verify Server certificate for this sample code
stream.SslVerification = SslVerification.NoVerification;
stream.AuthenticateAsClient(HostName, SslProtocols.Tls12);

// stream.Write() or stream.Read()

Feedback and documentation

For documentation, providing feedback, issues and finding out how to contribute please refer to the Home repo.

Join our Discord community here.

Credits

The list of contributors to this project can be found at CONTRIBUTORS.

License

The nanoFramework Class Libraries are licensed under the MIT license.

Code of Conduct

This project has adopted the code of conduct defined by the Contributor Covenant to clarify expected behaviour in our community. For more information see the .NET Foundation Code of Conduct.

.NET Foundation

This project is supported by the .NET Foundation.

Product Compatible and additional computed target framework versions.
.NET Framework net is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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
1.1.74 61 4/8/2024
1.1.72 65 4/3/2024
1.1.69 124 1/29/2024
1.1.67 76 1/26/2024
1.1.64 221 11/10/2023
1.1.62 94 11/9/2023
1.1.59 92 11/9/2023
1.1.52 465 12/28/2022
1.1.50 286 12/28/2022
1.1.48 278 12/27/2022
1.1.45 282 12/23/2022
1.1.37 522 10/26/2022
1.1.35 357 10/26/2022
1.1.33 382 10/26/2022
1.1.31 352 10/25/2022
1.1.29 351 10/24/2022
1.1.27 387 10/24/2022
1.1.25 377 10/23/2022
1.1.23 380 10/23/2022
1.1.20 399 10/8/2022
1.1.17 412 9/22/2022
1.1.15 427 9/22/2022
1.1.13 418 9/15/2022
1.1.8 380 8/4/2022
1.1.6 384 8/4/2022
1.1.4 387 8/3/2022
1.1.2 382 8/3/2022
1.0.0.23 413 7/20/2022
1.0.0.21 421 6/13/2022
1.0.0.19 414 6/8/2022
1.0.0.14 410 5/26/2022
1.0.0.12 405 5/18/2022
1.0.0.10 401 5/3/2022
1.0.0 430 3/29/2022
1.0.0-preview.12 108 3/29/2022
1.0.0-preview.9 113 3/17/2022
1.0.0-preview.7 104 3/14/2022
1.0.0-preview.5 107 3/14/2022
1.0.0-preview.3 113 2/23/2022