Search Results for

    Show / Hide Table of Contents

    Class GetKeysResult

    Inheritance
    object
    BasicResult
    GetKeysResult
    Inherited Members
    BasicResult.Result
    BasicResult.Message
    object.ToString()
    object.Equals(object)
    object.Equals(object, object)
    object.ReferenceEquals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    Namespace: SKM.V3.Models
    Assembly: Cryptolens.Licensing.CrossPlatform.dll
    Syntax
    public class GetKeysResult : BasicResult

    Properties

    | Edit this page View Source

    LicenseKeys

    A list of LicenseKey objects.

    Declaration
    public List<LicenseKey> LicenseKeys { get; set; }
    Property Value
    Type Description
    List<LicenseKey>
    | Edit this page View Source

    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
    | Edit this page View Source

    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
    | Edit this page View Source

    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
    • Edit this page
    • View Source
    In this article
    Back to top Copyright © Cryptolens AB