You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
652 B
21 lines
652 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Net.Sockets;
|
|
using System.Text;
|
|
|
|
namespace Apewer.Network
|
|
{
|
|
|
|
/// <summary></summary>
|
|
public delegate void SocketReceivedEventHandler(object sender, string ip, int port, byte[] bytes);
|
|
|
|
/// <summary></summary>
|
|
public delegate void SocketEndPointEventHandler(object sender, string ip, int port);
|
|
|
|
///// <summary></summary>
|
|
//public delegate void SocketExceptionCallback(object argSender, SocketException value);
|
|
|
|
///// <summary>返回 Http Progress 对象。</summary>
|
|
//public delegate void HttpProgressCallback(object argSender, HttpProgress argValue);
|
|
|
|
}
|
|
|