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 is not 6. is null.
public static SendWolAsync ( this target, PhysicalAddress macAddress ) : Task
target this Destination .
macAddress PhysicalAddress The MAC address of the client.
return Task
        public static Task SendWolAsync(this IPAddress target, PhysicalAddress macAddress) => target.SendWolAsync(macAddress, null);

Same methods

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
IPAddressExtensions::SendWolAsync ( this target, byte macAddress, int port, SecureOnPassword password ) : Task