Show / Hide Table of Contents

NEO.GetCandidates Method ()

Gets the list of candidates.

Namespace: Neo.SmartContract.Framework.Native

Assembly: Neo.SmartContract.Framework

Syntax

public static extern (ECPoint, BigInteger)[] GetCandidates();

Example

public class Contract1 : SmartContract.Framework.SmartContract
{
    public static object Test()
    {
        (ECPoint, BigInteger)[] result = NEO.GetCandidates();
        return result;
    }
}

Response description:

[{
    "type": "Array",
    "value": [{
        "type": "Struct",
        "value": [{
            "type": "ByteString",
            "value": "Apls6R4n/uoL7MTn/cB3Llj8G\u002BuLJ7LUyL/JWBQg4I0y"
        }, {
            "type": "Integer",
            "value": "10000"
        }]
    }]
}]

Response description:

  • Array type: candidates are successfully requested.

  • Others: failed.

Back