System.Net.IPAddressExtensions.SendWol C# (CSharp) Method

SendWol() public static method

Sends a Wake On LAN signal (magic packet) to a client.
The length of the array is not 6. is null. An error occurred when accessing the socket. See Remarks section of for more information.
public static SendWol ( this target, byte macAddress, int port, SecureOnPassword password ) : void
target this Destination .
macAddress byte The MAC address of the client.
port int The port to send the packet to.
password SecureOnPassword The SecureOn password of the client.
return void
        public static void SendWol(this IPAddress target, byte[] macAddress, int port, SecureOnPassword password)
        {
            Net.SendWol.Send(new IPEndPoint(target, port), macAddress, password);
        }
        /// <summary>Sends a Wake On LAN signal (magic packet) to a client.</summary>

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 mac0, byte mac1, byte mac2, byte mac3, byte mac4, byte mac5, int port ) : void
IPAddressExtensions::SendWol ( this target, byte macAddress, int port ) : void