LicenseServer.Abstractions
1.1.12
dotnet add package LicenseServer.Abstractions --version 1.1.12
NuGet\Install-Package LicenseServer.Abstractions -Version 1.1.12
<PackageReference Include="LicenseServer.Abstractions" Version="1.1.12" />
<PackageVersion Include="LicenseServer.Abstractions" Version="1.1.12" />
<PackageReference Include="LicenseServer.Abstractions" />
paket add LicenseServer.Abstractions --version 1.1.12
#r "nuget: LicenseServer.Abstractions, 1.1.12"
#:package LicenseServer.Abstractions@1.1.12
#addin nuget:?package=LicenseServer.Abstractions&version=1.1.12
#tool nuget:?package=LicenseServer.Abstractions&version=1.1.12
LicenseServer.Abstractions
Shared types for the LicenseServer ecosystem. This package contains enums, DTOs, request/response records, JSON:API envelope types, and response code constants used by both the license server and client SDK.
What's Included
- Enums:
LicenseType,DeviceMode - Models:
ParsedLicense,LicenseCustomer,PublicKeyInfo - Requests:
ActivateRequest,SyncRequest,SessionStartRequest,HeartbeatRequest,EndSessionRequest - Responses:
ActivateResponse,SyncResponse,SessionStartResponse,PublicKeyResponse - JSON:API:
JsonApiEnvelope<T>,JsonApiError,JsonApiErrorSource - Constants:
ResponseCodes(all success and error codes)
When to Use This Package
Reference this package directly when you only need the shared types — for example, if you're building a custom HTTP client or a server plugin that needs to understand the license wire format without pulling in the full client SDK.
using LicenseServer.Abstractions;
using LicenseServer.Abstractions.Enums;
using LicenseServer.Abstractions.Models;
using LicenseServer.Abstractions.Requests;
// Use ResponseCodes for type-safe response code checks
if (responseCode == ResponseCodes.LicenseActivated)
{
// ...
}
Zero Dependencies
This package has no external dependencies — only .NET 10 base class libraries.
Related Packages
| Package | Description |
|---|---|
| LicenseServer.Client.Abstractions | Interfaces, options, and event types |
| LicenseServer.Client | Full client SDK implementation |
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net10.0 is compatible. 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. |
-
net10.0
- No dependencies.
NuGet packages (1)
Showing the top 1 NuGet packages that depend on LicenseServer.Abstractions:
| Package | Downloads |
|---|---|
|
LicenseServer.Client.Abstractions
Interfaces, options, and event types for the LicenseServer Client SDK |
GitHub repositories
This package is not used by any popular GitHub repositories.