chatservice.cs

来自「AJAX开发工具包」· CS 代码 · 共 28 行

CS
28
字号
/*
 * 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 + =
减小字号Ctrl + -
显示快捷键?