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

SendWol() public static method

Sends a Wake On LAN signal (magic packet) to a client.
The length of the is not 6. is null. An error occurred when accessing the socket. See Remarks section of for more information.
public static SendWol ( this target, PhysicalAddress macAddress ) : void
target this Destination .
macAddress PhysicalAddress The MAC address of the client.
return void
        public static void SendWol(this IPAddress target, PhysicalAddress macAddress) => target.SendWol(macAddress, null);

Same methods

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