Value() public static méthode

Posts a value to stathat over HTTP
public static Value ( string key, string ukey, float value ) : void
key string the stat's posting key
ukey string your user key
value float the number
Résultat void
Exemple #1
0
 /// <summary>
 /// Posts a value to stathat over HTTP
 /// </summary>
 /// <param name="key">the stat's posting key</param>
 /// <param name="ukey">your user key</param>
 /// <param name="value">the number</param>
 /// <param name="replyDelegate">the function you'd like called with the reply from stathat's server</param>
 public static void Value(string key, string ukey, int value, ReplyDelegate replyDelegate)
 {
     Post.Value(key, ukey, (float)value, replyDelegate);
 }
Exemple #2
0
 /// <summary>
 /// Posts a value to stathat over HTTP
 /// </summary>
 /// <param name="key">the stat's posting key</param>
 /// <param name="ukey">your user key</param>
 /// <param name="value">the number</param>
 public static void Value(string key, string ukey, int value)
 {
     Post.Value(key, ukey, (float)value);
 }