diff options
| author | dkanada <dkanada@users.noreply.github.com> | 2019-08-10 15:12:54 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-08-10 15:12:54 -0700 |
| commit | 5c366e46975d7d541ecacedc0a80b1d269fde007 (patch) | |
| tree | c87e88383c23c29fa6d93e7f84d4b52c3af55cfe /MediaBrowser.Model | |
| parent | 4f592e9c33081df54032c2aa3701b45d11c44a12 (diff) | |
| parent | 25917db07a835bf0e5c6afdc0fec165851fffab2 (diff) | |
Merge pull request #1612 from Bond-009/warn4
Fix warnings
Diffstat (limited to 'MediaBrowser.Model')
| -rw-r--r-- | MediaBrowser.Model/System/WakeOnLanInfo.cs | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/MediaBrowser.Model/System/WakeOnLanInfo.cs b/MediaBrowser.Model/System/WakeOnLanInfo.cs index 031458735..534ad19ec 100644 --- a/MediaBrowser.Model/System/WakeOnLanInfo.cs +++ b/MediaBrowser.Model/System/WakeOnLanInfo.cs @@ -1,10 +1,47 @@ +using System.Net.NetworkInformation; + namespace MediaBrowser.Model.System { + /// <summary> + /// Provides the MAC address and port for wake-on-LAN functionality. + /// </summary> public class WakeOnLanInfo { + /// <summary> + /// Returns the MAC address of the device. + /// </summary> + /// <value>The MAC address.</value> public string MacAddress { get; set; } + + /// <summary> + /// Returns the wake-on-LAN port. + /// </summary> + /// <value>The wake-on-LAN port.</value> public int Port { get; set; } + /// <summary> + /// Initializes a new instance of the <see cref="WakeOnLanInfo" /> class. + /// </summary> + /// <param name="macAddress">The MAC address.</param> + public WakeOnLanInfo(PhysicalAddress macAddress) + { + MacAddress = macAddress.ToString(); + Port = 9; + } + + /// <summary> + /// Initializes a new instance of the <see cref="WakeOnLanInfo" /> class. + /// </summary> + /// <param name="macAddress">The MAC address.</param> + public WakeOnLanInfo(string macAddress) + { + MacAddress = macAddress; + Port = 9; + } + + /// <summary> + /// Initializes a new instance of the <see cref="WakeOnLanInfo" /> class. + /// </summary> public WakeOnLanInfo() { Port = 9; |
