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

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

Sends a Wake On LAN signal (magic packet) to a specific IP end point with the physical address.
is null.
public static SendWolAsync ( this address, IPEndPoint target, SecureOnPassword password ) : System.Threading.Tasks.Task
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.
Результат System.Threading.Tasks.Task
        public static Task SendWolAsync(this PhysicalAddress address, IPEndPoint target, SecureOnPassword password)
        {
            if (address == null)
                throw new ArgumentNullException(nameof(address));

            return target.SendWolAsync(address.GetAddressBytes(), password);
        }
#endif

Same methods

PhysicalAddressExtensions::SendWolAsync ( this address ) : System.Threading.Tasks.Task
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, SecureOnPassword password ) : System.Threading.Tasks.Task