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

SendWol() public static method

Sends a Wake On LAN signal (magic packet) to the broadcast IP address with the physical address.
is null.
public static SendWol ( this address ) : void
address this The instance of the physical address that should be used in the magic packet.
return void
        public static void SendWol(this PhysicalAddress address) => address.SendWol(IPAddress.Broadcast, null);

Same methods

PhysicalAddressExtensions::SendWol ( this address, IPAddress target ) : void
PhysicalAddressExtensions::SendWol ( this address, IPAddress target, SecureOnPassword password ) : void
PhysicalAddressExtensions::SendWol ( this address, IPEndPoint target ) : void
PhysicalAddressExtensions::SendWol ( this address, IPEndPoint target, SecureOnPassword password ) : void
PhysicalAddressExtensions::SendWol ( this address, SecureOnPassword password ) : void