Metered

Metered class

提供设置计量密钥的方法。

public class Metered

构造函数

姓名描述
Metered()初始化此类的新实例。

方法

姓名描述
SetMeteredKey(string, string)设置计量公钥和私钥。 如果你购买了计量许可证,当启动应用程序时,应该调用这个 API,通常,这就足够了。但如果总是上传消费数据失败,超过24小时,License会被设置为评估状态,为避免这种情况,您应该定期检查License状态,如果是评估状态,请重新调用此接口。
static GetConsumptionCredit()获得消费积分
static GetConsumptionQuantity()获取消费文件大小

例子

在此示例中,将尝试设置计量公钥和私钥

[C#]

Metered matered = new Metered();
matered.SetMeteredKey("PublicKey", "PrivateKey");


[Visual Basic]

Dim matered As Metered = New Metered
matered.SetMeteredKey("PublicKey", "PrivateKey")

组件 jar 文件:

Metered matered = new Metered();
matered.setMeteredKey("PublicKey", "PrivateKey");

也可以看看