SetMeteredKey

Metered.SetMeteredKey method

Activa el producto con claves medidas.

public void SetMeteredKey(string publicKey, string privateKey)
Parámetro Escribe Descripción
publicKey String Una clave pública.
privateKey String una clave privada

Ejemplos

El siguiente ejemplo demuestra cómo activar el producto con claves medidas.

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

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

Ver también