System.Net.PhysicalAddressExtensions.SendWol C# (CSharp) Метод

SendWol() публичный статический Метод

Sends a Wake On LAN signal (magic packet) to a specific IP end point with the physical address.
is null.
public static SendWol ( this address, IPEndPoint target, SecureOnPassword password ) : void
address this The instance of the physical address that should be used in the magic packet.
target IPEndPoint Destination .
password SecureOnPassword The SecureOn password of the client.
Результат void
        public static void SendWol(this PhysicalAddress address, IPEndPoint target, SecureOnPassword password)
        {
            if (address == null)
                throw new ArgumentNullException(nameof(address));

            target.SendWol(address.GetAddressBytes(), password);
        }

Same methods

PhysicalAddressExtensions::SendWol ( this address ) : void
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, SecureOnPassword password ) : void