⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 chatuser.cs

📁 a project create chat room in asp.net with c sharp
💻 CS
字号:
using System;

namespace ASPNETChat
{
	public class ChatUser:IDisposable
	{

		#region Members
		public string UserID;
		public string UserName;
		public bool IsActive;
		public DateTime LastSeen;
		public int LastMessageReceived;
		#endregion 

		#region Constructors
		public ChatUser(string id,string userName)
		{
			this.UserID=id;
			this.IsActive=false;
			this.LastSeen=DateTime.MinValue ;
			this.UserName=userName;
			this.LastMessageReceived=0;
		}
		#endregion 

		#region IDisposable Members
		public void Dispose()
		{
			this.UserID="";
			this.IsActive=false;
			this.LastSeen=DateTime.MinValue ;
			this.UserName="";
			this.LastMessageReceived=0;
		}
		#endregion
	}

	
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -