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

SendWol() public static method

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

Same methods

PhysicalAddressExtensions::SendWol ( this address ) : 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