v9.10.2019.0101 全面巩固批量Insert/Update/Upsert,支持数据备份、恢复和同步,支持实体列表保存到文件以及加载
大石头
authored at
2019-01-01 13:38:33
X
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using NewLife.Net;
namespace NewLife.Http
{
/// <summary>Http服务器</summary>
[DisplayName("Http服务器")]
public class HttpServer : NetServer
{
/// <summary>实例化</summary>
public HttpServer()
{
Name = "Http";
Port = 80;
ProtocolType = NetType.Http;
// Http封包协议
//SessionPacket = new PacketFactory { Offset = -1 };
}
}
}
|