?? frmechoclient.cs
字號:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Net;
using ALAZ.SystemEx.NetEx.SocketsEx;
namespace EchoFormClient
{
public partial class frmEchoClient : EchoFormTemplate.frmEchoForm
{
private SocketClient FEchoClient;
public frmEchoClient()
{
InitializeComponent();
}
private void cmdStart_Click(object sender, EventArgs e)
{
AddConnector();
FEchoClient.Start();
Event("Started!");
Event("---------------------------------");
}
private void cmdStop_Click(object sender, EventArgs e)
{
FEchoClient.Stop();
Event("Stopped!");
Event("---------------------------------");
}
private void frmEchoClient_Load(object sender, EventArgs e)
{
FEchoClient = new SocketClient(new EchoSocketService.EchoSocketService(FEvent), DelimiterType.dtMessageTailExcludeOnReceive, Encoding.GetEncoding(1252).GetBytes("ALAZ"), 1024 * 2, 1024 * 16);
}
private void AddConnector()
{
for (int i = 1; i <= 50; i++)
{
FEchoClient.AddConnector(String.Empty, new IPEndPoint(IPAddress.Loopback, 8092), null, EncryptType.etNone, CompressionType.ctNone, new EchoCryptService.EchoCryptService());
}
}
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -