コード例 #1
0
		public UserSession(string user_name)
		{
			this.UserName = user_name;
			this.SessionKey = Util.RandomAlphaNumericString(6);
			this.LastActiveTime = DateTime.Now;
		}