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

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

Sends a Wake On LAN signal (magic packet) to the broadcast IP address with the physical address.
is null.
public static SendWolAsync ( this address ) : System.Threading.Tasks.Task
address this The instance of the physical address that should be used in the magic packet.
Результат System.Threading.Tasks.Task
        public static Task SendWolAsync(this PhysicalAddress address)
        {
            if (address == null)
                throw new ArgumentNullException(nameof(address));

            return IPAddress.Broadcast.SendWolAsync(address.GetAddressBytes());
        }

Same methods

PhysicalAddressExtensions::SendWolAsync ( this address, IPAddress target ) : System.Threading.Tasks.Task
PhysicalAddressExtensions::SendWolAsync ( this address, IPAddress target, SecureOnPassword password ) : System.Threading.Tasks.Task
PhysicalAddressExtensions::SendWolAsync ( this address, IPEndPoint target ) : System.Threading.Tasks.Task
PhysicalAddressExtensions::SendWolAsync ( this address, IPEndPoint target, SecureOnPassword password ) : System.Threading.Tasks.Task
PhysicalAddressExtensions::SendWolAsync ( this address, SecureOnPassword password ) : System.Threading.Tasks.Task