Class Metered

Metered class

メータリング キーを設定するメソッドを提供します。

public sealed class Metered : IDisposable

コンストラクター

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

メソッド

名前説明
Dispose()アンマネージ リソースの解放、解放、またはリセットに関連するアプリケーション定義のタスクを実行します。
SetMeteredKey(string, string)従量制の公開鍵と秘密鍵を設定します
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");

関連項目