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
9 lines
155 B
C#
9 lines
155 B
C#
namespace IronLicensing.Client;
|
|
|
|
public interface IMachineIdentifier
|
|
{
|
|
string GetMachineId();
|
|
string GetMachineName();
|
|
string GetPlatform();
|
|
}
|