Class Metered

Metered class

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

public class Metered

コンストラクター

名前説明
Metered()デフォルトのコンストラクター。

メソッド

名前説明
ResetMeteredKey()以前にセットアップしたライセンスを削除します。
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")

従量制ライセンスの設定方法を示します。

Metered metered = new Metered();
metered.SetMeteredKey("MyPublicKey", "MyPrivateKey");

Console.WriteLine($"Credit before operation: {Metered.GetConsumptionCredit():F2}");
Console.WriteLine($"Consumption quantity before operation: {Metered.GetConsumptionQuantity():F2}");

// ドキュメント ディレクトリへのパス。
string dataDir = RunExamples.GetDataDir_Pages();

// OneNote ドキュメントを読み込み、最初の子を取得します           
Document document = new Document(Path.Combine(dataDir, "Aspose.one"));

document.Save(Path.Combine(dataDir, "MeteredLicense.pdf"));

Console.WriteLine($"Credit before operation: {Metered.GetConsumptionCredit():F2}");
Console.WriteLine($"Consumption quantity before operation: {Metered.GetConsumptionQuantity():F2}");

関連項目