diff --git a/src/Microsoft.Net.Http.Server/RequestProcessing/RequestUriBuilder.cs b/src/Microsoft.Net.Http.Server/RequestProcessing/RequestUriBuilder.cs
index 6ca7ff4072..6597bbaf36 100644
--- a/src/Microsoft.Net.Http.Server/RequestProcessing/RequestUriBuilder.cs
+++ b/src/Microsoft.Net.Http.Server/RequestProcessing/RequestUriBuilder.cs
@@ -114,6 +114,7 @@ namespace Microsoft.Net.Http.Server
///
/// The iterator point to the first % char
/// The place to write to
+ /// The end of the buffer
/// The byte array
private static bool DecodeCore(ref int reader, ref int writer, int end, byte[] buffer)
{
@@ -276,6 +277,7 @@ namespace Microsoft.Net.Http.Server
/// will be returned.
///
/// The value to read
+ /// The end of the buffer
/// The byte array
/// The unescaped byte if success. Otherwise return -1.
private static int? UnescapePercentEncoding(ref int scan, int end, byte[] buffer)
@@ -315,6 +317,7 @@ namespace Microsoft.Net.Http.Server
/// byte no matter no matter whether the operation successes.
///
/// The value to read
+ /// The end of the buffer
/// The byte array
/// The hexadecimal value if successes, otherwise -1.
private static int? ReadHex(ref int scan, int end, byte[] buffer)