Metered

Metered class

従量制ライセンスでコンポーネントのライセンスを取得する方法を提供します。

public class Metered

コンストラクター

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

メソッド

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

備考

もっと詳しく知る

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

string publicKey = "Public Key";
string privateKey = "Private Key";

Metered metered = new Metered();
metered.SetMeteredKey(publicKey, privateKey);

関連項目