Skip to content
This repository has been archived by the owner on Jul 15, 2023. It is now read-only.

Commit

Permalink
Merge pull request #457 from vanillajonathan/patch-1
Browse files Browse the repository at this point in the history
Fixed capitalization in parameter
  • Loading branch information
SergeyTeplyakov authored Sep 26, 2016
2 parents a6f1d39 + 8bdc718 commit 9cf9f54
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Microsoft.Research/Contracts/System/System.Net.IPAddress.cs
Original file line number Diff line number Diff line change
Expand Up @@ -231,20 +231,20 @@ public IPAddress(long newAddress)
// address:
// The byte array value of the IP address.
//
// scopeid:
// scopeId:
// The long value of the scope identifier.
//
// Exceptions:
// System.ArgumentNullException:
// address is null.
//
// System.ArgumentOutOfRangeException:
// scopeid < 0 or scopeid > 0x00000000FFFFFFFF
public IPAddress(byte[] address, long scopeid)
// scopeId < 0 or scopeId > 0x00000000FFFFFFFF
public IPAddress(byte[] address, long scopeId)
{
Contract.Requires(address != null);
Contract.Requires(scopeid >= 0);
Contract.Requires(scopeid <= 0x00000000FFFFFFFF);
Contract.Requires(scopeId >= 0);
Contract.Requires(scopeId <= 0x00000000FFFFFFFF);
}

// Summary:
Expand Down Expand Up @@ -443,4 +443,4 @@ public static bool TryParse(string ipString, out IPAddress address)
}
}

#endif
#endif

0 comments on commit 9cf9f54

Please sign in to comment.