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

SendWol() public static method

Sends a Wake On LAN signal (magic packet) to a client.
The length of the array macAddress is not 6. is null.
public static SendWol ( this target, byte macAddress, SecureOnPassword password ) : void
target this Destination .
macAddress byte The MAC address of the client.
password SecureOnPassword The SecureOn password of the client.
return void
        public static void SendWol(this IPEndPoint target, byte[] macAddress, SecureOnPassword password)
        {
            Net.SendWol.Send(target, macAddress, password);
        }

Same methods

IPEndPointExtensions::SendWol ( this target, System.Net.NetworkInformation.PhysicalAddress macAddress ) : void
IPEndPointExtensions::SendWol ( this target, System.Net.NetworkInformation.PhysicalAddress macAddress, SecureOnPassword password ) : void
IPEndPointExtensions::SendWol ( this target, byte macAddress ) : void
IPEndPointExtensions::SendWol ( this target, byte mac0, byte mac1, byte mac2, byte mac3, byte mac4, byte mac5 ) : void
IPEndPointExtensions