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

SendWol() public static method

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

Same methods

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