本文整理汇总了C#中System.Collections.Hashtable.toJson方法的典型用法代码示例。如果您正苦于以下问题:C# Hashtable.toJson方法的具体用法?C# Hashtable.toJson怎么用?C# Hashtable.toJson使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Collections.Hashtable
的用法示例。
在下文中一共展示了Hashtable.toJson方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: initialise
public void initialise (IBillingServiceCallback callback) {
this.callback = callback;
if (null == publicKey || publicKey.Equals ("[Your key]")) {
callback.logError (UnibillError.GOOGLEPLAY_PUBLICKEY_NOTCONFIGURED, publicKey);
callback.onSetupComplete (false);
return;
}
var encoder = new Hashtable ();
encoder.Add ("publicKey", this.publicKey);
ArrayList products = new ArrayList ();
foreach (var item in db.AllPurchasableItems) {
Hashtable product = new Hashtable ();
product.Add ("productId", remapper.mapItemIdToPlatformSpecificId (item));
product.Add ("consumable", item.PurchaseType == PurchaseType.Consumable);
products.Add (product);
}
encoder.Add("products", products);
var json = encoder.toJson();
rawInterface.initialise(this, json);
}
示例2: getPurchaseResponse
public static string getPurchaseResponse(string productId) {
var h = new Hashtable ();
h.Add ("productId", productId);
h.Add ("purchaseToken", "TOKEN");
return h.toJson ();
}
示例3: purchase
public void purchase (string product) {
Hashtable response = new Hashtable ();
response.Add ("productId", product);
response.Add ("signature", "signature");
callback.onPurchaseSucceeded(response.toJson());
}