Counter() публичный статический Метод

Posts a counter increment to stathat over HTTP
public static Counter ( string key, string ukey, float count ) : void
key string the stat's posting key
ukey string your user key
count float the number to increment
Результат void
Пример #1
0
 /// <summary>
 /// Posts a counter increment to stathat over HTTP
 /// </summary>
 /// <param name="key">the stat's posting key</param>
 /// <param name="ukey">your user key</param>
 /// <param name="count">the number to increment</param>
 public static void Counter(string key, string ukey, int count)
 {
     Post.Counter(key, ukey, (float)count);
 }
Пример #2
0
 /// <summary>
 /// Posts a counter increment to stathat over HTTP
 /// </summary>
 /// <param name="key">the stat's posting key</param>
 /// <param name="ukey">your user key</param>
 /// <param name="count">the number to increment</param>
 /// <param name="replyDelegate">the function you'd like called with the reply from stathat's server</param>
 public static void Counter(string key, string ukey, int count, ReplyDelegate replyDelegate)
 {
     Post.Counter(key, ukey, (float)count, replyDelegate);
 }