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

SendWolAsync() 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 SendWolAsync ( this target, byte macAddress, SecureOnPassword password ) : System.Threading.Tasks.Task
target this Destination .
macAddress byte The MAC address of the client.
password SecureOnPassword The SecureOn password of the client.
return System.Threading.Tasks.Task
        public static Task SendWolAsync(this IPEndPoint target, byte[] macAddress, SecureOnPassword password)
        {
            return Net.SendWol.SendAsync(target, macAddress, password);
        }

Same methods

IPEndPointExtensions::SendWolAsync ( this target, System.Net.NetworkInformation.PhysicalAddress macAddress ) : System.Threading.Tasks.Task
IPEndPointExtensions::SendWolAsync ( this target, System.Net.NetworkInformation.PhysicalAddress macAddress, SecureOnPassword password ) : System.Threading.Tasks.Task
IPEndPointExtensions::SendWolAsync ( this target, byte macAddress ) : System.Threading.Tasks.Task
IPEndPointExtensions::SendWolAsync ( this target, byte mac0, byte mac1, byte mac2, byte mac3, byte mac4, byte mac5 ) : System.Threading.Tasks.Task
IPEndPointExtensions