Files
huabe-sitondao/tongxin/NetWorkHelper/TCP/IBase.cs
2025-11-14 16:12:32 +08:00

25 lines
634 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/********************************************************************
* *
* * Copyright (C) 2013-2018 uiskin.cn
* * 作者: BinGoo QQ315567586
* * 请尊重作者劳动成果,请保留以上作者信息,禁止用于商业活动。
* *
* * 创建时间2014-08-05
* * 说明ITcp组件的基类
* *
********************************************************************/
namespace NetWorkHelper.TCP
{
interface IServerBase
{
/// <summary>
/// 启动
/// </summary>
void Start();
/// <summary>
/// 停止
/// </summary>
void Stop();
}
}