Method | Description | |
---|---|---|
Counter ( string key, string ukey, float count ) : void |
Posts a counter increment to stathat over HTTP
|
|
Counter ( string key, string ukey, float count, ReplyDelegate replyDelegate ) : void |
Posts a counter increment to stathat over HTTP
|
|
Counter ( string key, string ukey, int count ) : void |
Posts a counter increment to stathat over HTTP
|
|
Counter ( string key, string ukey, int count, ReplyDelegate replyDelegate ) : void |
Posts a counter increment to stathat over HTTP
|
|
EzCounter ( string ezkey, string stat, float count ) : void |
Posts a counter increment to stathat over HTTP using ez API - the stat and/or you don't have to be pre-registered
|
|
EzCounter ( string ezkey, string stat, float count, ReplyDelegate replyDelegate ) : void |
Posts a counter increment to stathat over HTTP using ez API - the stat and/or you don't have to be pre-registered
|
|
EzCounter ( string ezkey, string stat, int count ) : void |
Posts a counter increment to stathat over HTTP using ez API - the stat and/or you don't have to be pre-registered
|
|
EzCounter ( string ezkey, string stat, int count, ReplyDelegate replyDelegate ) : void |
Posts a counter increment to stathat over HTTP using ez API - the stat and/or you don't have to be pre-registered
|
|
EzValue ( string ezkey, string stat, float value ) : void |
Posts a counter increment to stathat over HTTP using ez API - the stat and/or you don't have to be pre-registered
|
|
EzValue ( string ezkey, string stat, float value, ReplyDelegate replyDelegate ) : void |
Posts a counter increment to stathat over HTTP using ez API - the stat and/or you don't have to be pre-registered
|
|
EzValue ( string ezkey, string stat, int value ) : void |
Posts a counter increment to stathat over HTTP using ez API - the stat and/or you don't have to be pre-registered
|
|
EzValue ( string ezkey, string stat, int value, ReplyDelegate replyDelegate ) : void |
Posts a counter increment to stathat over HTTP using ez API - the stat and/or you don't have to be pre-registered
|
|
Value ( string key, string ukey, float value ) : void |
Posts a value to stathat over HTTP
|
|
Value ( string key, string ukey, float value, ReplyDelegate replyDelegate ) : void |
Posts a value to stathat over HTTP
|
|
Value ( string key, string ukey, int value ) : void |
Posts a value to stathat over HTTP
|
|
Value ( string key, string ukey, int value, ReplyDelegate replyDelegate ) : void |
Posts a value 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 |
return | void |
public static Counter ( string key, string ukey, float count, ReplyDelegate replyDelegate ) : void | ||
key | string | the stat's posting key |
ukey | string | your user key |
count | float | the number to increment |
replyDelegate | ReplyDelegate | the function you'd like called with the reply from stathat's server |
return | void |
public static Counter ( string key, string ukey, int count ) : void | ||
key | string | the stat's posting key |
ukey | string | your user key |
count | int | the number to increment |
return | void |
public static Counter ( string key, string ukey, int count, ReplyDelegate replyDelegate ) : void | ||
key | string | the stat's posting key |
ukey | string | your user key |
count | int | the number to increment |
replyDelegate | ReplyDelegate | the function you'd like called with the reply from stathat's server |
return | void |
public static EzCounter ( string ezkey, string stat, float count ) : void | ||
ezkey | string | your ezkey (defaults to email address). If you already have a stathat account, use the one associated with it. |
stat | string | the name for your stat |
count | float | the number to increment |
return | void |
public static EzCounter ( string ezkey, string stat, float count, ReplyDelegate replyDelegate ) : void | ||
ezkey | string | your ezkey (defaults to email address). If you already have a stathat account, use the one associated with it. |
stat | string | the name for your stat |
count | float | the number to increment |
replyDelegate | ReplyDelegate | the function you'd like called with the reply from stathat's server |
return | void |
public static EzCounter ( string ezkey, string stat, int count ) : void | ||
ezkey | string | your ezkey (defaults to email address). If you already have a stathat account, use the one associated with it. |
stat | string | the name for your stat |
count | int | the number to increment |
return | void |
public static EzCounter ( string ezkey, string stat, int count, ReplyDelegate replyDelegate ) : void | ||
ezkey | string | your ezkey (defaults to email address). If you already have a stathat account, use the one associated with it. |
stat | string | the name for your stat |
count | int | the number to increment |
replyDelegate | ReplyDelegate | the function you'd like called with the reply from stathat's server |
return | void |
public static EzValue ( string ezkey, string stat, float value ) : void | ||
ezkey | string | your ezkey (defaults to email address). If you already have a stathat account, use the one associated with it. |
stat | string | the name for your stat |
value | float | |
return | void |
public static EzValue ( string ezkey, string stat, float value, ReplyDelegate replyDelegate ) : void | ||
ezkey | string | your ezkey (defaults to email address). If you already have a stathat account, use the one associated with it. |
stat | string | the name for your stat |
value | float | |
replyDelegate | ReplyDelegate | the function you'd like called with the reply from stathat's server |
return | void |
public static EzValue ( string ezkey, string stat, int value ) : void | ||
ezkey | string | your ezkey (defaults to email address). If you already have a stathat account, use the one associated with it. |
stat | string | the name for your stat |
value | int | |
return | void |
public static EzValue ( string ezkey, string stat, int value, ReplyDelegate replyDelegate ) : void | ||
ezkey | string | your ezkey (defaults to email address). If you already have a stathat account, use the one associated with it. |
stat | string | the name for your stat |
value | int | |
replyDelegate | ReplyDelegate | the function you'd like called with the reply from stathat's server |
return | void |
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 |
return | void |
public static Value ( string key, string ukey, float value, ReplyDelegate replyDelegate ) : void | ||
key | string | the stat's posting key |
ukey | string | your user key |
value | float | the number |
replyDelegate | ReplyDelegate | the function you'd like called with the reply from stathat's server |
return | void |
public static Value ( string key, string ukey, int value ) : void | ||
key | string | the stat's posting key |
ukey | string | your user key |
value | int | the number |
return | void |
public static Value ( string key, string ukey, int value, ReplyDelegate replyDelegate ) : void | ||
key | string | the stat's posting key |
ukey | string | your user key |
value | int | the number |
replyDelegate | ReplyDelegate | the function you'd like called with the reply from stathat's server |
return | void |