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

SendWolAsync() public static method

Sends a Wake On LAN signal (magic packet) to a client.
The length of the array is not 6. is null.
public static SendWolAsync ( this target, byte macAddress, int port, SecureOnPassword password ) : Task
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 Task
        public static Task SendWolAsync(this IPAddress target, byte[] macAddress, int port, SecureOnPassword password)
        {
            return Net.SendWol.SendAsync(new IPEndPoint(target, port), macAddress, password);
        }

Same methods

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