SetMeteredKey

Metered.SetMeteredKey method

メータリング キーで製品をアクティブ化します。

public void SetMeteredKey(string publicKey, string privateKey)
パラメータ タイプ 説明
publicKey String 公開鍵。
privateKey String 秘密鍵。

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

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

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

関連項目