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

SendWol() public static method

Sendet ein Wake-On-LAN-Signal an einen Client.
is null.
public static SendWol ( this target, System.Net.NetworkInformation.PhysicalAddress macAddress, SecureOnPassword password ) : void
target this Der Ziel-IPEndPoint.
macAddress System.Net.NetworkInformation.PhysicalAddress The MAC address of the client.
password SecureOnPassword The SecureOn password of the client.
return void
        public static void SendWol(this IPEndPoint target, PhysicalAddress macAddress, SecureOnPassword password)
        {
            Net.SendWol.Send(target, macAddress, password);
        }

Same methods

IPEndPointExtensions::SendWol ( this target, System.Net.NetworkInformation.PhysicalAddress macAddress ) : void
IPEndPointExtensions::SendWol ( this target, byte macAddress ) : void
IPEndPointExtensions::SendWol ( this target, byte macAddress, SecureOnPassword password ) : void
IPEndPointExtensions::SendWol ( this target, byte mac0, byte mac1, byte mac2, byte mac3, byte mac4, byte mac5 ) : void
IPEndPointExtensions