Metered

Metered class

従量制ライセンスで製品をアクティベートし、処理された MB の量を取得できるメソッドを提供します。 従量制ライセンスの詳細ここ .

public class Metered

コンストラクター

名前 説明
Metered() Metered クラスの新しいインスタンスを初期化します。

メソッド

名前 説明
SetMeteredKey(string, string) メータリング キーで製品をアクティブ化します。
static GetConsumptionCredit() 消費クレジットを取得します。
static GetConsumptionQuantity() 処理された MB の量を取得します。

備考

もっと詳しく知る

次の例は、メータリング キーを使用して製品をアクティブ化する方法を示しています。

[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");

関連項目