Software licensing SDK for .NET MAUI applications with: - License validation and activation - Feature gating - Trial support - Offline validation with signature verification - In-app purchase integration
13 lines
304 B
C#
13 lines
304 B
C#
namespace IronLicensing.Client.Exceptions;
|
|
|
|
public class LicenseRequiredException : Exception
|
|
{
|
|
public string FeatureKey { get; }
|
|
|
|
public LicenseRequiredException(string featureKey)
|
|
: base($"Feature '{featureKey}' requires a valid license")
|
|
{
|
|
FeatureKey = featureKey;
|
|
}
|
|
}
|