![]() |
VOOZH | about |
dotnet add package ISL.NetFramework.Communication.Driver --version 1.0.0
NuGet\Install-Package ISL.NetFramework.Communication.Driver -Version 1.0.0
<PackageReference Include="ISL.NetFramework.Communication.Driver" Version="1.0.0" />
<PackageVersion Include="ISL.NetFramework.Communication.Driver" Version="1.0.0" />Directory.Packages.props
<PackageReference Include="ISL.NetFramework.Communication.Driver" />Project file
paket add ISL.NetFramework.Communication.Driver --version 1.0.0
#r "nuget: ISL.NetFramework.Communication.Driver, 1.0.0"
#:package ISL.NetFramework.Communication.Driver@1.0.0
#addin nuget:?package=ISL.NetFramework.Communication.Driver&version=1.0.0Install as a Cake Addin
#tool nuget:?package=ISL.NetFramework.Communication.Driver&version=1.0.0Install as a Cake Tool
ISL.NetFramework.Communication.Driver is the single entrypoint package for:
presign -> complete -> get url)Use one registration call and one injectable service (ICommunicationDriver) for common communication flows.
services.AddIslCommunicationDriver(configuration);
ICommunicationDriver DB features require persistence registration:
services.AddIslLinqToDbPersistence(configuration);
public sealed class NotificationService
{
private readonly ICommunicationDriver _driver;
public NotificationService(ICommunicationDriver driver)
{
_driver = driver;
}
public Task QueueWelcomeAsync(CancellationToken cancellationToken)
{
return _driver.QueueEmailAsync(
new CommunicationEmailSendRequest(
Subject: "Welcome",
PlainTextBody: "Hello from ISL",
HtmlBody: null,
Language: "en-US",
ToRecipients: ["user@example.com"],
Attachments:
[
new CommunicationEmailAttachment("https://storage.example.com/files/welcome.pdf")
]),
cancellationToken).AsTask();
}
}
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net10.0 net10.0 is compatible. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
This package is not used by any NuGet packages.
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 1.0.0 | 99 | 5/21/2026 |