Opal 1.1.2
.NET 6.0
Install-Package Opal -Version 1.1.2
dotnet add package Opal --version 1.1.2
<PackageReference Include="Opal" Version="1.1.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Opal --version 1.1.2
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Opal, 1.1.2"
#r directive can be used in F# Interactive, C# scripting and .NET Interactive. Copy this into the interactive tool or source code of the script to reference the package.
// Install Opal as a Cake Addin
#addin nuget:?package=Opal&version=1.1.2
// Install Opal as a Cake Tool
#tool nuget:?package=Opal&version=1.1.2
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Opal
A client library for the Gemini protocol written for .NET 6
Features
- Asynchronous requests
- Typed Gemtext document handling
- Event-based user input
- Configurable redirect behavior
- Optional client certificate support with creation and persistence
- Optional TOFU semantics with persistent certificate caching
- No external libraries (only uses what .NET provides)
Usage
Install the Nuget package
Install-Package Opal -Version 1.1.1
Create an instance of a client and make requests
// the default behavior is to automatically follow redirects and to persit
// local and remote certificates to disk
var client = new OpalClient();
var response = await client.SendRequestAsync("gemini.circumlunar.space");
if (response is GemtextResponse gmi)
{
// the response body may accessed directly...
await using (var reader = new StreamReader(gmi.Body))
Console.WriteLine(reader.ReadToEnd());
// ... or as a collection of strongly-typed ILine objects
foreach (var line in gmi.AsDocument())
{
if (line is LinkLine link)
Console.WriteLine($"Found link to {link.Uri}");
Console.WriteLine(line);
}
}
Product | Versions |
---|---|
.NET | net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows |
Compatible target framework(s)
Additional computed target framework(s)
Learn more about Target Frameworks and .NET Standard.
-
net6.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.