OptimusLog.AppService.Domain
2.0.1
dotnet add package OptimusLog.AppService.Domain --version 2.0.1
NuGet\Install-Package OptimusLog.AppService.Domain -Version 2.0.1
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="OptimusLog.AppService.Domain" Version="2.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="OptimusLog.AppService.Domain" Version="2.0.1" />
<PackageReference Include="OptimusLog.AppService.Domain" />
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 OptimusLog.AppService.Domain --version 2.0.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: OptimusLog.AppService.Domain, 2.0.1"
#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 OptimusLog.AppService.Domain@2.0.1
#: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=OptimusLog.AppService.Domain&version=2.0.1
#tool nuget:?package=OptimusLog.AppService.Domain&version=2.0.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
OptimusLog.AppService.Domain
Application service domain interfaces for the Optimus Log module. Defines the business logic contracts for API logging, log querying, and logging configuration.
Features
- Log Service Interface:
IServiceApiLogfor adding and retrieving API logs - Log List Service:
IServiceApiLogListextendingIServiceListablefor paginated log queries with type/group metadata - Setting Service:
IServiceApiLogSettingto check if API logging is globally enabled
Key Interfaces
| Interface | Description |
|---|---|
IServiceApiLog |
AddRange(ApiLogDto[]) for batch logging, Get(long id) for retrieval |
IServiceApiLogList |
Paginated listing with GetTypes() and GetGroups() metadata |
IServiceApiLogSetting |
IsApiLogEnabled() to check global logging state |
Installation
dotnet add package OptimusLog.AppService.Domain
Usage
using OptimusLog.AppService.Domain;
public class MyMiddleware
{
private readonly IServiceApiLog _logService;
private readonly IServiceApiLogSetting _settingService;
public async Task ProcessAsync(ApiLogDto log)
{
if (await _settingService.IsApiLogEnabled())
{
_logService.AddRange(log);
}
}
}
| 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. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net10.0
- OptimusFramework.AppService.Domain (>= 2.0.1)
- OptimusFramework.Utils (>= 2.0.1)
- OptimusLog.DataTransfer (>= 2.0.1)
NuGet packages (2)
Showing the top 2 NuGet packages that depend on OptimusLog.AppService.Domain:
| Package | Downloads |
|---|---|
|
OptimusLog.Api
Package Description |
|
|
OptimusLog.AppService
Package Description |
GitHub repositories
This package is not used by any popular GitHub repositories.