• 大小: 0.07M
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-02-24
  • 语言: C#
  • 标签: C#  网络  源码  计算机  

资源简介


资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Net;
using System.Net.NetworkInformation;
using System.ComponentModel;
using System.Threading;
using System.Diagnostics;

namespace ArpNetwork
{
     class ArpNetworkPcs
    {
       internal class LocalPcDetails
        {
            public string MacAddress { get; set; }
            public string IpAddress { get; set; }
            public string IpType { get; set; }
            public bool IpActive { get; set; }
        }

        /// 
        /// Retrieves the IPInfo for All machines on the local network.
        /// 

        /// 
        public List FindLocalPcs()
        {
            var activeLocalPcs = new List();
            activeLocalPcs =  LocalPing();
            return activeLocalPcs;
        }


        //private List LocalPing()
        //{
        //    // Ping‘s the local machine.
    

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2018-07-11 07:48  .vs\
     目录           0  2018-07-11 07:48  .vs\WakeOnLan\
     目录           0  2018-07-11 07:48  .vs\WakeOnLan\v14\
     文件       45568  2017-02-20 19:54  .vs\WakeOnLan\v14\.suo
     文件       35141  2017-02-20 19:54  LICENSE
     目录           0  2018-07-11 07:48  WakeOnLan\
     文件        5028  2017-02-20 19:54  WakeOnLan\ARPNetwork.cs
     文件         184  2017-02-20 19:54  WakeOnLan\App.config
     文件        2674  2017-02-20 19:54  WakeOnLan\FindMacAddress.cs
     文件        3985  2017-02-20 19:54  WakeOnLan\PingAllOnNetwork.cs
     文件        1416  2017-02-20 19:54  WakeOnLan\Program.cs
     目录           0  2018-07-11 07:48  WakeOnLan\Properties\
     文件        1414  2017-02-20 19:54  WakeOnLan\Properties\AssemblyInfo.cs
     文件        2782  2017-02-20 19:54  WakeOnLan\WakeOnLan.csproj
     文件       10113  2017-02-20 19:54  WakeOnLan\WoL.cs
     目录           0  2018-07-11 07:48  WakeOnLan\bin\
     目录           0  2018-07-11 07:48  WakeOnLan\bin\Debug\
     文件       13824  2017-02-20 19:54  WakeOnLan\bin\Debug\ConsoleApplication3.exe
     文件         184  2017-02-20 19:54  WakeOnLan\bin\Debug\ConsoleApplication3.exe.config
     文件       36352  2017-02-20 19:54  WakeOnLan\bin\Debug\ConsoleApplication3.pdb
     文件         184  2017-02-20 19:54  WakeOnLan\bin\Debug\ConsoleApplication3.vshost.exe.config
     文件         479  2017-02-20 19:54  WakeOnLan\bin\Debug\ConsoleApplication3.vshost.exe.manifest
     文件         184  2017-02-20 19:54  WakeOnLan\bin\Debug\WakeOnLan.exe.config
     文件       22696  2017-02-20 19:54  WakeOnLan\bin\Debug\WakeOnLan.vshost.exe
     文件         184  2017-02-20 19:54  WakeOnLan\bin\Debug\WakeOnLan.vshost.exe.config
     文件         479  2017-02-20 19:54  WakeOnLan\bin\Debug\WakeOnLan.vshost.exe.manifest
     目录           0  2018-07-11 07:48  WakeOnLan\obj\
     目录           0  2018-07-11 07:48  WakeOnLan\obj\Debug\
     文件        1232  2017-02-20 19:54  WakeOnLan\obj\Debug\ConsoleApplication3.csproj.FileListAbsolute.txt
     文件        6536  2017-02-20 19:54  WakeOnLan\obj\Debug\ConsoleApplication3.csprojResolveAssemblyReference.cache
     文件       13824  2017-02-20 19:54  WakeOnLan\obj\Debug\ConsoleApplication3.exe
............此处省略7个文件信息

评论

共有 条评论