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);

यह सभी देखें