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

📄 chatservice.cs

📁 AJAX开发工具包
💻 CS
字号:
/*
 * MS	06-04-16	initial version
 * 
 * 
 * 
 * 
 * 
 */
using System;
using System.Collections.Generic;
using System.Text;

namespace AjaxPro.Services
{
	[AjaxNamespace("AjaxPro.Services.Chat")]
	public abstract class IChatService
	{
		[AjaxMethod]
		public abstract bool SendMessage(string room, string message);

		[AjaxMethod]
		public abstract object[] RetrieveNew(string room, DateTime lastRetreived);

		[AjaxMethod]
		public abstract object[] RetrieveLast(string room, int count);
	}
}

⌨️ 快捷键说明

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