Metered

Metered class

従量制ライセンスを使用する方法を提供します。

public class Metered

コンストラクター

名前 説明
Metered() このクラスの新しいインスタンスを作成します。

メソッド

名前 説明
SetMeteredKey(string, string) 適切な従量制の公開キーと非公開キーを指定して、コンポーネントの従量制ライセンスを有効にします。
static GetConsumptionCredit() 現在消費されているクレジット数を返します。
static GetConsumptionQuantity() 現在消費されているメガバイト数を返します。

この例では、従量制の公開鍵と秘密鍵を設定しようとしています:

[C#]

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

[Visual Basic]

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

関連項目