mirror of
https://github.com/DuendeSoftware/products
synced 2026-05-24 09:28:24 +00:00
Clarify documentation for LicenseUsageSummary parameters.
Updated XML documentation to provide detailed descriptions for parameter usage in the LicenseUsageSummary record. This improves clarity, especially for auditing purposes, and ensures better understanding of the fields.
This commit is contained in:
parent
f6b1590bf1
commit
54bcfd8a4d
1 changed files with 5 additions and 5 deletions
|
|
@ -8,12 +8,12 @@ using System.Collections.Generic;
|
|||
namespace Duende.IdentityServer.Licensing;
|
||||
|
||||
/// <summary>
|
||||
/// Usage summary for the current license.
|
||||
/// Usage summary for the current IdentityServer instance intended for auditing purposes.
|
||||
/// </summary>
|
||||
/// <param name="LicenseEdition"></param>
|
||||
/// <param name="ClientsUsed"></param>
|
||||
/// <param name="IssuersUsed"></param>
|
||||
/// <param name="FeaturesUsed"></param>
|
||||
/// <param name="LicenseEdition">License edition retrieved from license key.</param>
|
||||
/// <param name="ClientsUsed">Clients used in the current IdentityServer instance.</param>
|
||||
/// <param name="IssuersUsed">Issuers used in the current IdentityServer instance.</param>
|
||||
/// <param name="FeaturesUsed">Features used in the current IdentityServer instance.</param>
|
||||
public record LicenseUsageSummary(
|
||||
string LicenseEdition,
|
||||
IReadOnlyCollection<string> ClientsUsed,
|
||||
|
|
|
|||
Loading…
Reference in a new issue