|
如何取得並顯示當前登入人數? |
|
|
在Server上ServerConfig.UserLoginCount就是當前的登錄人數,可以通過ServerMethod來返回這個值.如: Client端 object[] ret = CliUtils.CallMethod("S001", "GetUserCount", null); Label1.Text = ret[1].ToString(); Server端 public object[] GetUserCount(object[] param) { return new object[]{0, ServerConfig.UserLoginCount}; }
|
|
|