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

SendWolAsync() public static method

Sends a Wake On LAN signal (magic packet) to a client.
is null.
public static SendWolAsync ( this target, System.Net.NetworkInformation.PhysicalAddress macAddress ) : System.Threading.Tasks.Task
target this Destination .
macAddress System.Net.NetworkInformation.PhysicalAddress The MAC address of the client.
return System.Threading.Tasks.Task
        public static Task SendWolAsync(this IPEndPoint target, PhysicalAddress macAddress)
        {
            return Net.SendWol.SendAsync(target, macAddress);
        }

Same methods

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 macAddress, SecureOnPassword password ) : 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