aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common/Net/IPData.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Common/Net/IPData.cs')
-rw-r--r--MediaBrowser.Common/Net/IPData.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/MediaBrowser.Common/Net/IPData.cs b/MediaBrowser.Common/Net/IPData.cs
index 6901d6ad8..384efe8f6 100644
--- a/MediaBrowser.Common/Net/IPData.cs
+++ b/MediaBrowser.Common/Net/IPData.cs
@@ -12,9 +12,9 @@ namespace MediaBrowser.Common.Net
/// <summary>
/// Initializes a new instance of the <see cref="IPData"/> class.
/// </summary>
- /// <param name="address">An <see cref="IPAddress"/>.</param>
+ /// <param name="address">The <see cref="IPAddress"/>.</param>
/// <param name="subnet">The <see cref="IPNetwork"/>.</param>
- /// <param name="name">The object's name.</param>
+ /// <param name="name">The interface name.</param>
public IPData(IPAddress address, IPNetwork? subnet, string name)
{
Address = address;
@@ -25,7 +25,7 @@ namespace MediaBrowser.Common.Net
/// <summary>
/// Initializes a new instance of the <see cref="IPData"/> class.
/// </summary>
- /// <param name="address">An <see cref="IPAddress"/>.</param>
+ /// <param name="address">The <see cref="IPAddress"/>.</param>
/// <param name="subnet">The <see cref="IPNetwork"/>.</param>
public IPData(IPAddress address, IPNetwork? subnet)
: this(address, subnet, string.Empty)
@@ -53,7 +53,7 @@ namespace MediaBrowser.Common.Net
public string Name { get; set; }
/// <summary>
- /// Gets the AddressFamily of this object.
+ /// Gets the AddressFamily of the object.
/// </summary>
public AddressFamily AddressFamily
{