System.Net.SendWol.SendPacket C# (CSharp) 메소드

SendPacket() 개인적인 정적인 메소드

private static SendPacket ( IPEndPoint target, byte packet ) : void
target IPEndPoint
packet byte
리턴 void
        private static void SendPacket(IPEndPoint target, byte[] packet)
        {
            using (var cl = new UdpClient())
                cl.Send(packet, packet.Length, target);
        }