Class GetKeysResult
Inherited Members
Namespace: SKMV3Models
Assembly: Cryptolens.Licensing.CrossPlatform.dll
Syntax
public class GetKeysResult : BasicResult
Properties
| Improve this Doc View SourceLicenseKeys
A list of LicenseKey objects.
Declaration
public List<LicenseKey> LicenseKeys { get; set; }
Property Value
Type | Description |
---|---|
ListLicenseKey |
PageCount
Since not all keys will be returned if the number of them is more than 99, you can increment the Page parameter to list the remaining ones. This value is the limit of the number of pages available (this makes it easier to iterate through all the keys).
Declaration
public int PageCount { get; set; }
Property Value
Type | Description |
---|---|
int |
Returned
The number of licenses returned in the request, eg. size of the returned list.
Declaration
public int Returned { get; set; }
Property Value
Type | Description |
---|---|
int |
Total
The total number of keys available that satisfy the condition. For example, if search query is empty, the total is the number of license keys in the entire product. Otherwise, it's the number of results of that query. By default, only 99 license keys will be returned in a single request. There may still be more license keys, which are obtained by increasing the Page parameter.
Declaration
public int Total { get; set; }
Property Value
Type | Description |
---|---|
int |