Integrating Unity Container with SuperSocket in WPF Applications

Configuring the Host BuilderTo enable Unity as the dependency injection framework for SuperSocket, begin by installing the Unity.Microsoft.DependencyInjection NuGet package. During the initialization of the server host, apply the UseUnityServiceProvider extension method to the IHostBuilder. This bridges the SuperSocket lifecycle with the Unity ...

Posted on Thu, 02 Jul 2026 16:59:26 +0000 by strangermaster

Implementing a Custom PipelineFilter in SuperSocket 2.0

This article walks through the implementation of a custom PipelineFilter in SuperSocket 2.0. The development environment is Windows 10, Visual Studio 2019, .NET Core 3.1, and SuperSocket 2.0.0-beta.8. 1. Project Creation Create a .NET Core console application using Visual Studio 2019 targeting .NET Core 3.1, and add the SuperSocket (2.0.0-beta. ...

Posted on Thu, 28 May 2026 18:30:21 +0000 by trippyd

Building a Telnet Server with SuperSocket 2.0

This tutorial demonstrates creating a basic Telnet server using SuperSocket 2.0 for handling simple arithmetic commands. Project Setup Create a new .NET Core 3.1 Console Application in Visual Studio 2019. Install SuperSocket Add the SuperSocket NuGet package (version 2.0.0-beta.8 or latter) to your project. Server Implementation using Microsoft ...

Posted on Sun, 17 May 2026 17:39:50 +0000 by theBond