本文整理匯總了C#中Newtonsoft.Json.JsonReader.Close方法的典型用法代碼示例。如果您正苦於以下問題:C# JsonReader.Close方法的具體用法?C# JsonReader.Close怎麽用?C# JsonReader.Close使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Newtonsoft.Json.JsonReader
的用法示例。
在下文中一共展示了JsonReader.Close方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: getAccountBalance
//get the current account balance for a given user
public string getAccountBalance(string username, string apiKey, ref NotifyIcon notifyIcon)
{
string accountBalance = "0.0";
try
{
if (String.IsNullOrEmpty(username))
return "";
WebClient client = new WebClient();
string urlFormat = "http://marketplace.envato.com/api/v1/" + username + "/" + apiKey + "/account.json";
Uri url = new Uri(string.Format(urlFormat));
string data = client.DownloadString(url);
using (JsonReader reader = new JsonReader(new StringReader(data)))
{
while (reader.Read())
{
//users++;
if ((string)reader.Value == "balance")
{
reader.Read();
accountBalance = (string)reader.Value;
}
}
reader.Close(); //close the reader object
}
}
catch (WebException webex)
{
notifyIcon.ShowBalloonTip(180000000, "EnvatoTracker error!", "Error querying the api - invalid api key maybe?\n\nError:"+webex, ToolTipIcon.None);
}
return accountBalance;
}
示例2: getNewSalesItemName
//return all sales information within a 2d array of parameter/values
//Index 0 = "item name"
//Index 1 = "sold at"
// array[0][0] = "orangeDream"
// array[0][1] = "Sun Mar 29 08:09:17 +1100 2009"
// array[1][0] = "orangeDream"
// array[1][1] = "Sun Mar 29 08:09:17 +1100 2009"
public ArrayList getNewSalesItemName(string username, string apiKey, int max, ref NotifyIcon notifyIcon)
{
ArrayList twod_salesItems = new ArrayList(); //contains only the newest items (equal to max) after sorting by date
try
{
if (String.IsNullOrEmpty(username))
return new ArrayList();
ArrayList tempTwod_salesItems = new ArrayList(); //stores all itemname/sold at pairs before sorting and stripping out max
WebClient client = new WebClient();
string urlFormat = "http://marketplace.envato.com/api/v1/" + username + "/" + apiKey + "/recent-sales.json";
Uri url = new Uri(string.Format(urlFormat));
string data = client.DownloadString(url);
//when looping through each item we should compare the dates against the ones in the array
//if a newer sale is found we replace it
using (JsonReader reader = new JsonReader(new StringReader(data)))
{
string itemName = "";
string soldAt = "";
while (reader.Read())
{
if ((string)reader.Value == "item")
{
reader.Read();
itemName = (string)reader.Value;
}
if ((string)reader.Value == "sold_at")
{
reader.Read();
soldAt = (string)reader.Value;
//we have both item name and sold time so add to array list
ArrayList tempArr = new ArrayList(); //stores the item name/sold at pairs
tempArr.Add(itemName);
tempArr.Add(soldAt);
tempTwod_salesItems.Add(tempArr);
}
}
reader.Close(); //close the reader object
}
//lets process through the temp 2d array and extrac the newest items up to max
ArrayList dates = new ArrayList();
int loop = 0;
foreach (ArrayList arr in tempTwod_salesItems)
{
if (loop < max)
twod_salesItems.Add(arr);
else
break;
loop++;
}
}
catch (WebException webex)
{
notifyIcon.ShowBalloonTip(180000000, "EnvatoTracker error!", "Error querying the api - invalid api key maybe?\nError:" + webex, ToolTipIcon.None);
}
return twod_salesItems;
}
示例3: isValidApiKey
//validates the username/key combo
//on failure we get a WebException and return false, otherwise return true
public bool isValidApiKey(string username, string apiKey)
{
bool isValid = false;
try
{
if (String.IsNullOrEmpty(username) || String.IsNullOrEmpty(apiKey))
return false;
WebClient client = new WebClient();
string urlFormat = "http://marketplace.envato.com/api/v1/" + username + "/" + apiKey + "/account.json";
Uri url = new Uri(string.Format(urlFormat));
string data = client.DownloadString(url);
using (JsonReader reader = new JsonReader(new StringReader(data)))
{
while (reader.Read())
{
//do nothing with the data
}
reader.Close(); //close the reader object
}
isValid = true;
}
catch (WebException webex)
{
isValid = false;
}
return isValid;
}
示例4: getTotalSales
//get the total number of sales from the given username
public int getTotalSales(string username)
{
if (String.IsNullOrEmpty(username))
return 0;
WebClient client = new WebClient();
string urlFormat = "http://marketplace.envato.com/api/v1/user:" + username + ".json";
Uri url = new Uri(string.Format(urlFormat));
string data = client.DownloadString(url);
int totalSales = 0;
using (JsonReader reader = new JsonReader(new StringReader(data)))
{
while (reader.Read())
{
//users++;
if ((string)reader.Value == "sales")
{
reader.Read();
totalSales = int.Parse((string)reader.Value);
}
}
reader.Close(); //close the reader object
}
return totalSales;
}