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

SendWol() 개인적인 메소드

private SendWol ( this target, byte mac0, byte mac1, byte mac2, byte mac3, byte mac4, byte mac5, int port ) : void
target this
mac0 byte
mac1 byte
mac2 byte
mac3 byte
mac4 byte
mac5 byte
port int
리턴 void
        public static void SendWol(this IPAddress target, byte mac0, byte mac1, byte mac2, byte mac3, byte mac4, byte mac5, int port)
        {
            Net.SendWol.Send(new IPEndPoint(target, port), mac0, mac1, mac2, mac3, mac4, mac5);
        }

Same methods

IPAddressExtensions::SendWol ( this target, PhysicalAddress macAddress ) : void
IPAddressExtensions::SendWol ( this target, PhysicalAddress macAddress, SecureOnPassword password ) : void
IPAddressExtensions::SendWol ( this target, byte macAddress ) : void
IPAddressExtensions::SendWol ( this target, byte macAddress, SecureOnPassword password ) : void
IPAddressExtensions::SendWol ( this target, byte mac0, byte mac1, byte mac2, byte mac3, byte mac4, byte mac5 ) : void
IPAddressExtensions::SendWol ( this target, byte macAddress, int port ) : void
IPAddressExtensions::SendWol ( this target, byte macAddress, int port, SecureOnPassword password ) : void