IRCStates 1.5.0

dotnet add package IRCStates --version 1.5.0
                    
NuGet\Install-Package IRCStates -Version 1.5.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="IRCStates" Version="1.5.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="IRCStates" Version="1.5.0" />
                    
Directory.Packages.props
<PackageReference Include="IRCStates" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add IRCStates --version 1.5.0
                    
#r "nuget: IRCStates, 1.5.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.
#:package IRCStates@1.5.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=IRCStates&version=1.5.0
                    
Install as a Cake Addin
#tool nuget:?package=IRCStates&version=1.5.0
                    
Install as a Cake Tool

IRCStates

port of jesopo/ircstates

available on nuget

bare bones irc client state

see the full example in StatesSample/Client.cs

internal class Client
{
    private readonly byte[] _bytes;
    private readonly StatefulEncoder _encoder;
    private readonly string _host;
    private readonly string _nick;
    private readonly int _port;
    private readonly Server _server;
    private readonly Socket _socket;

    public Client(string host, int port, string nick)
    {
        _server  = new Server("test");
        _socket  = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);
        _encoder = new StatefulEncoder();
        _host    = host;
        _port    = port;
        _nick    = nick;
        _bytes   = new byte[1024];
    }

    private void Send(string raw)
    {
        _encoder.Push(new Line(raw));
    }

    public void Start()
    {
        _socket.Connect(_host, _port);
        while (!_socket.Connected) Thread.Sleep(1000);

        Send("USER test 0 * test");
        Send($"NICK {_nick}");

        while (true)
        {
            while (_encoder.PendingBytes.Any())
            {
                foreach (var line in _encoder.Pop(_socket.Send(_encoder.PendingBytes)))
                    Console.WriteLine($"> {line.Format()}");
            }

            var bytesReceived = _socket.Receive(_bytes);
            if (bytesReceived == 0)
            {
                Console.WriteLine("! disconnected");
                _socket.Shutdown(SocketShutdown.Both);
                _socket.Close();
                break;
            }

            var receivedLines = _server.Receive(_bytes, bytesReceived);
            foreach (var (line, _) in receivedLines)
            {
                Console.WriteLine($"< {line.Format()}");

                switch (line.Command)
                {
                    case Commands.Privmsg:
                        if (line.Params[1].Contains(_server.NickName))
                            Send($"PRIVMSG {line.Params[0]} :hi {line.Hostmask.NickName}!");
                        break;
                    case "PING":
                        Send($"PONG :{line.Params[0]}");
                        break;
                    case Numeric.RPL_WELCOME:
                        if (!_server.HasChannel("#test")) Send("JOIN #test");
                        break;
                }
            }
        }
    }
}
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
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.5.0 445 11/20/2025
1.4.0 264 4/17/2024
1.2.0 573 11/10/2021
1.1.0 647 11/10/2020
1.0.2 756 7/8/2020
1.0.1 799 5/17/2020
1.0.0 804 5/16/2020