-
大小: 8.19MB文件類型: .rar金幣: 2下載: 0 次發布日期: 2023-11-09
- 語言: 其他
- 標簽: ICan??Seeyou??IPAddress??ControlLib??
資源簡介
遠程控制軟件,另外附帶IPAddressControlLib等IP控制控件

代碼片段和文件信息
/*----------------------------------------------------------------
????????//?Copyright?(C)?2007?L3‘Studio
????????//?版權所有。?
????????//?開發者:L3‘Studio團隊
????????//?文件名:baseControler.cs
????????//?文件功能描述:基本控制類(即客戶端),具有建立連接,斷開連接和基本通訊功能
//----------------------------------------------------------------*/
using?System;
using?System.Net;
using?System.Net.Sockets;
using?System.Threading;
using?System.IO;
using?System.Runtime.Serialization.Formatters.Binary;
using?System.Runtime.Serialization;
using?System.Windows.Forms;
using?ICanSeeYou.bases;
using?ICanSeeYou.Common;
namespace?Client
{
????///?
????///?基本控制類
????///?
????public?class?baseControler?:?baseCommunication
????{
????????///?
????????///?Tcp客戶端
????????///?
????????private?TcpClient?client;
????????///?
????????///?服務端IP
????????///?
????????private?IPAddress?serverAddress;
????????///?
????????///?服務端IP
????????///?
????????public?IPAddress?ServerAddress
????????{
????????????get?{?return?serverAddress;?}
????????????set?{?serverAddress?=?value;?}
????????}
????????private?bool?haveConnected;
????????///?
????????///?是否已經建立連接
????????///?
????????public?bool?HaveConnected
????????{
????????????get
????????????{
????????????????return?haveConnected;
????????????}
????????}
????????//startPort作為以后擴展功能用
????????//?private?int?startPort;
????????private?int?maxTimes;
????????///?
????????///?最大重試次數
????????///?
????????public?int?MaxTimes
????????{
????????????get?{?return?maxTimes;?}
????????????set?{?maxTimes?=?value;?}
????????}
????????///?
????????///等待重試時間
????????///?
????????protected?override?int?sleepTime
????????{
????????????get
????????????{
????????????????return?base.sleepTime;
????????????}
????????}
????????///?
????????///?控制端的構造函數(默認重試次數為常量:Constant.MaxTimes)
????????///?
????????///?服務端IP地址
????????///?通訊端口
????????public?baseControler(IPAddress?serverAddress?int?port)
????????????:?this(serverAddress?port?Constant.MaxTimes)
????????{
????????}
????????///?
????????///?控制端的構造函數
????????///?
????????///?服務端IP地址
????????///?通訊端口
????????///重試次數
????????public?baseControler(IPAddress?serverAddress?int?port?int?maxTimes)
????????????:?base()
????????{
????????????this.serverAddress?=?serverAddress;
????????????base.port?=?port;
??????????//??this.startPort?=?port;
????????????this.maxTimes?=?maxTimes;
????????????haveConnected?=?false;
????????}
????????///?
????????///?正在連接服務端?
????????///?
????????///?能否連接
????????public?void?Connecting()
????????{
????????????haveConnected?=?false;
??????
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件???????5325??2007-04-09?11:14??ICanSeeYou遠程控制軟件(源代碼)-L3_‘Studio\Backup\Client\ba
?????文件???????2380??2007-04-08?22:12??ICanSeeYou遠程控制軟件(源代碼)-L3_‘Studio\Backup\Client\Client.csproj
?????文件???????4506??2007-04-27?22:04??ICanSeeYou遠程控制軟件(源代碼)-L3_‘Studio\Backup\Client\FileControler.cs
?????文件???????4785??2007-04-27?22:05??ICanSeeYou遠程控制軟件(源代碼)-L3_‘Studio\Backup\Client\ScreenControler.cs
?????文件???????2510??2007-04-08?22:12??ICanSeeYou遠程控制軟件(源代碼)-L3_‘Studio\Backup\Clients\Clients.csproj
?????文件??????39683??2007-04-27?22:51??ICanSeeYou遠程控制軟件(源代碼)-L3_‘Studio\Backup\Clients\Controlers.cs
?????文件???????1335??2007-04-08?21:02??ICanSeeYou遠程控制軟件(源代碼)-L3_‘Studio\Backup\Clients\Properties\AssemblyInfo.cs
?????文件???????1770??2007-04-27?22:09??ICanSeeYou遠程控制軟件(源代碼)-L3_‘Studio\Backup\ICanSeeYou\Common\API\Api.cs
?????文件???????4567??2007-04-09?01:03??ICanSeeYou遠程控制軟件(源代碼)-L3_‘Studio\Backup\ICanSeeYou\Common\ba
?????文件???????1348??2007-04-08?17:42??ICanSeeYou遠程控制軟件(源代碼)-L3_‘Studio\Backup\ICanSeeYou\Common\Codes\Code.cs
?????文件???????4078??2007-04-27?22:25??ICanSeeYou遠程控制軟件(源代碼)-L3_‘Studio\Backup\ICanSeeYou\Common\Codes\CodeHead.cs
?????文件???????1176??2007-04-27?22:11??ICanSeeYou遠程控制軟件(源代碼)-L3_‘Studio\Backup\ICanSeeYou\Common\Codes\Explorer\ba
?????文件????????800??2007-04-27?22:13??ICanSeeYou遠程控制軟件(源代碼)-L3_‘Studio\Backup\ICanSeeYou\Common\Codes\Explorer\DirectoryStruct.cs
?????文件????????857??2007-04-27?22:14??ICanSeeYou遠程控制軟件(源代碼)-L3_‘Studio\Backup\ICanSeeYou\Common\Codes\Explorer\DisksCode.cs
?????文件????????776??2007-04-27?22:14??ICanSeeYou遠程控制軟件(源代碼)-L3_‘Studio\Backup\ICanSeeYou\Common\Codes\Explorer\DiskStruct.cs
?????文件???????2833??2007-04-27?22:15??ICanSeeYou遠程控制軟件(源代碼)-L3_‘Studio\Backup\ICanSeeYou\Common\Codes\Explorer\ExplorerCode.cs
?????文件???????1105??2007-04-27?22:16??ICanSeeYou遠程控制軟件(源代碼)-L3_‘Studio\Backup\ICanSeeYou\Common\Codes\Explorer\FileStruct.cs
?????文件???????2502??2007-04-27?22:16??ICanSeeYou遠程控制軟件(源代碼)-L3_‘Studio\Backup\ICanSeeYou\Common\Codes\IO\FileCode.cs
?????文件????????907??2007-04-27?22:18??ICanSeeYou遠程控制軟件(源代碼)-L3_‘Studio\Backup\ICanSeeYou\Common\Codes\IO\SendScreenCode.cs
?????文件???????2046??2007-04-27?22:20??ICanSeeYou遠程控制軟件(源代碼)-L3_‘Studio\Backup\ICanSeeYou\Common\Codes\Mouse_KeyBoard\KeyBoardEvent.cs
?????文件???????2797??2007-04-27?22:20??ICanSeeYou遠程控制軟件(源代碼)-L3_‘Studio\Backup\ICanSeeYou\Common\Codes\Mouse_KeyBoard\MouseEvent.cs
?????文件???????1160??2007-04-27?22:20??ICanSeeYou遠程控制軟件(源代碼)-L3_‘Studio\Backup\ICanSeeYou\Common\Codes\Net\HostCode.cs
?????文件????????766??2007-04-27?22:21??ICanSeeYou遠程控制軟件(源代碼)-L3_‘Studio\Backup\ICanSeeYou\Common\Codes\Net\PortCode.cs
?????文件????????807??2007-04-27?22:22??ICanSeeYou遠程控制軟件(源代碼)-L3_‘Studio\Backup\ICanSeeYou\Common\Codes\Simple\DoubleCode.cs
?????文件????????874??2007-04-27?22:22??ICanSeeYou遠程控制軟件(源代碼)-L3_‘Studio\Backup\ICanSeeYou\Common\Codes\Simple\ThreeCode.cs
?????文件???????3763??2007-04-08?22:10??ICanSeeYou遠程控制軟件(源代碼)-L3_‘Studio\Backup\ICanSeeYou\Common\Common.csproj
?????文件???????3233??2007-04-27?22:25??ICanSeeYou遠程控制軟件(源代碼)-L3_‘Studio\Backup\ICanSeeYou\Common\Configure\Option.cs
?????文件???????1342??2007-04-27?22:26??ICanSeeYou遠程控制軟件(源代碼)-L3_‘Studio\Backup\ICanSeeYou\Common\Configure\OptionFile.cs
?????文件???????1730??2007-04-27?22:27??ICanSeeYou遠程控制軟件(源代碼)-L3_‘Studio\Backup\ICanSeeYou\Common\Configure\OptionManager.cs
?????文件???????2938??2007-04-27?22:27??ICanSeeYou遠程控制軟件(源代碼)-L3_‘Studio\Backup\ICanSeeYou\Common\Configure\PassWord.cs
............此處省略749個文件信息
- 上一篇:基于stm32的三相逆變代碼
- 下一篇:2.4G nrf51822 nrf24le1
評論
共有 條評論