nanoframework.System.Net.Sockets.TcpClient
1.1.52
Prefix Reserved
See the version list below for details.
dotnet add package nanoframework.System.Net.Sockets.TcpClient --version 1.1.52
NuGet\Install-Package nanoframework.System.Net.Sockets.TcpClient -Version 1.1.52
<PackageReference Include="nanoframework.System.Net.Sockets.TcpClient" Version="1.1.52" />
paket add nanoframework.System.Net.Sockets.TcpClient --version 1.1.52
#r "nuget: nanoframework.System.Net.Sockets.TcpClient, 1.1.52"
// Install nanoframework.System.Net.Sockets.TcpClient as a Cake Addin #addin nuget:?package=nanoframework.System.Net.Sockets.TcpClient&version=1.1.52 // Install nanoframework.System.Net.Sockets.TcpClient as a Cake Tool #tool nuget:?package=nanoframework.System.Net.Sockets.TcpClient&version=1.1.52
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 |
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 | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net is compatible. |
-
- nanoFramework.CoreLibrary (>= 1.14.2)
- nanoFramework.System.IO.Streams (>= 1.1.38)
- nanoFramework.System.Net (>= 1.10.52)
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.83 | 137 | 7/29/2024 |
1.1.77 | 118 | 5/13/2024 |
1.1.74 | 149 | 4/8/2024 |
1.1.72 | 108 | 4/3/2024 |
1.1.69 | 157 | 1/29/2024 |
1.1.67 | 106 | 1/26/2024 |
1.1.64 | 252 | 11/10/2023 |
1.1.62 | 121 | 11/9/2023 |
1.1.59 | 119 | 11/9/2023 |
1.1.52 | 498 | 12/28/2022 |
1.1.50 | 316 | 12/28/2022 |
1.1.48 | 306 | 12/27/2022 |
1.1.45 | 312 | 12/23/2022 |
1.1.37 | 555 | 10/26/2022 |
1.1.35 | 383 | 10/26/2022 |
1.1.33 | 412 | 10/26/2022 |
1.1.31 | 384 | 10/25/2022 |
1.1.29 | 378 | 10/24/2022 |
1.1.27 | 415 | 10/24/2022 |
1.1.25 | 401 | 10/23/2022 |
1.1.23 | 406 | 10/23/2022 |
1.1.20 | 430 | 10/8/2022 |
1.1.17 | 438 | 9/22/2022 |
1.1.15 | 454 | 9/22/2022 |
1.1.13 | 443 | 9/15/2022 |
1.1.8 | 405 | 8/4/2022 |
1.1.6 | 408 | 8/4/2022 |
1.1.4 | 409 | 8/3/2022 |
1.1.2 | 404 | 8/3/2022 |
1.0.0.23 | 438 | 7/20/2022 |
1.0.0.21 | 443 | 6/13/2022 |
1.0.0.19 | 441 | 6/8/2022 |
1.0.0.14 | 430 | 5/26/2022 |
1.0.0.12 | 428 | 5/18/2022 |
1.0.0.10 | 428 | 5/3/2022 |
1.0.0 | 458 | 3/29/2022 |
1.0.0-preview.12 | 127 | 3/29/2022 |
1.0.0-preview.9 | 127 | 3/17/2022 |
1.0.0-preview.7 | 117 | 3/14/2022 |
1.0.0-preview.5 | 119 | 3/14/2022 |
1.0.0-preview.3 | 126 | 2/23/2022 |