AHE 2.0.0

dotnet add package AHE --version 2.0.0
                    
NuGet\Install-Package AHE -Version 2.0.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="AHE" Version="2.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="AHE" Version="2.0.0" />
                    
Directory.Packages.props
<PackageReference Include="AHE" />
                    
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 AHE --version 2.0.0
                    
#r "nuget: AHE, 2.0.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 AHE@2.0.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=AHE&version=2.0.0
                    
Install as a Cake Addin
#tool nuget:?package=AHE&version=2.0.0
                    
Install as a Cake Tool

Ally Http Engine (AHE)

v2.0.0

Hi!, I'm Elnior, I created this to process faster HTTP data of Software Agents (Browsers & Servers).

You can see some examples:

response.txt content:

HTTP/1.1 200 ready
content-type: text/txt
content-length: 218
date: this time
server: NElniorS

ertoihrtgirtyg
rtyoiurtgoiry
ertoihrtgirtygertoihrtgirtygertoihrtgirtygertoihrtgirtygertoihrtgirtygertoihrtgirtygertoihrtgirtygertoihrtgirtygertoihrtgirtygertoihrtgirtygertoih



 // //
  // //


rtgirtygertoihrtgirtyg

request.txt content:

GET /home/ HTTP/1.1
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7
Accept-Encoding: gzip, deflate, br, zstd
Accept-Language: en-US,en;q=0.9
Cache-Control: max-age=0
Connection: keep-alive
Host: 127.0.0.2
Referer: http://127.0.0.2/
Sec-Fetch-Dest: document
Sec-Fetch-Mode: navigate
Sec-Fetch-Site: same-origin
Sec-Fetch-User: ?1
Upgrade-Insecure-Requests: 1
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36
sec-ch-ua: "Not:A-Brand";v="99", "Google Chrome";v="145", "Chromium";v="145"
sec-ch-ua-mobile: ?0
sec-ch-ua-platform: "Windows"


C# coding:

        using NElniorPackS;
        using NElniorPackS.NElniorMimeS;

	FileStream fs = new FileStream("response.txt", FileMode.Open);
	// 13Kb
	byte[] data = new byte[13312];
	int readed = fs.Read(data, 0, data.Length);
	Ylluna ylluna = new Ylluna(data, readed);
	if (ylluna)
	{
		Console.WriteLine("Response Area:\r\n---------------------------------------------------------");
		Console.WriteLine(ylluna.httpVersionTag);
		Console.WriteLine(ylluna.statusCode);
		Console.WriteLine(ylluna.statusMessage);
		foreach (string someKey in ylluna.headers.headers.Keys)
			Console.WriteLine(") {0}: {1}", someKey, ylluna.headers[someKey]);
		Console.WriteLine("bodyInit: {0}", ylluna.bodyInit);
		ylluna.Dispose();
		fs.Close();
	}
	else
		Console.WriteLine("They are mistakes");

	fs = new FileStream("request.txt", FileMode.Open);
	readed = fs.Read(data, 0, data.Length);
	Anully anully = new Anully(data, readed);

	if (anully)
	{
		Console.WriteLine("Request Area:\r\n---------------------------------------------------------");
		Console.WriteLine(anully.method);
		Console.WriteLine(anully.httpVersionTag);
		Console.WriteLine(anully.hReference.path);
		Console.WriteLine(anully.hReference.queries);
		foreach (string someKey in anully.headers.headers.Keys)
			Console.WriteLine(") {0}: {1}", someKey, anully.headers[someKey]);
		Console.WriteLine("bodyInit: {0}", anully.bodyInit);
		anully.Dispose();
		fs.Close();
	}
	else
		Console.WriteLine("They are mistakes");

You can use it to build strongs HTTP/S Agents Delegators

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.
  • .NETStandard 2.0

    • 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
2.0.0 129 3/13/2026