diff --git a/snippets/csharp/VS_Snippets_WebNet/System.Web.Configuration.HttpRuntimeSection/CS/httpruntimesection.cs b/snippets/csharp/VS_Snippets_WebNet/System.Web.Configuration.HttpRuntimeSection/CS/httpruntimesection.cs
index e7fb915d331..d396bd73a85 100644
--- a/snippets/csharp/VS_Snippets_WebNet/System.Web.Configuration.HttpRuntimeSection/CS/httpruntimesection.cs
+++ b/snippets/csharp/VS_Snippets_WebNet/System.Web.Configuration.HttpRuntimeSection/CS/httpruntimesection.cs
@@ -112,7 +112,7 @@ protected void Page_Load(object sender, EventArgs e)
Response.Write("RequestLengthDiskThreshold: " +
configSection.RequestLengthDiskThreshold + "
");
- // Set the RequestLengthDiskThreshold property value to 512 bytes.
+ // Set the RequestLengthDiskThreshold property value to 512 kilobytes.
configSection.RequestLengthDiskThreshold = 512;
//
diff --git a/snippets/visualbasic/VS_Snippets_WebNet/System.Web.Configuration.HttpRuntimeSection/VB/httpruntimesection.vb b/snippets/visualbasic/VS_Snippets_WebNet/System.Web.Configuration.HttpRuntimeSection/VB/httpruntimesection.vb
index e71082b302f..477bac1c9f9 100644
--- a/snippets/visualbasic/VS_Snippets_WebNet/System.Web.Configuration.HttpRuntimeSection/VB/httpruntimesection.vb
+++ b/snippets/visualbasic/VS_Snippets_WebNet/System.Web.Configuration.HttpRuntimeSection/VB/httpruntimesection.vb
@@ -113,7 +113,7 @@ Partial Class _Default
Response.Write("RequestLengthDiskThreshold: " & _
configSection.RequestLengthDiskThreshold & "
")
- ' Set the RequestLengthDiskThreshold property value to 512 bytes.
+ ' Set the RequestLengthDiskThreshold property value to 512 kilobytes.
configSection.RequestLengthDiskThreshold = 512
'
diff --git a/xml/System.Web.Configuration/HttpRuntimeSection.xml b/xml/System.Web.Configuration/HttpRuntimeSection.xml
index 39ffad68ebe..941be8dd013 100644
--- a/xml/System.Web.Configuration/HttpRuntimeSection.xml
+++ b/xml/System.Web.Configuration/HttpRuntimeSection.xml
@@ -1009,12 +1009,12 @@
Gets or sets the input-stream buffering threshold.
- The number of bytes that indicate the input-stream buffering threshold. The default is 80 kilobytes.
+ The number of kilobytes that indicate the input-stream buffering threshold. The default is 80 kilobytes.
property specifies the input-stream buffering threshold limit in number of bytes. Its value should not exceed the property value. After a request entity exceeds this threshold, it is buffered transparently onto disk.
+ The property specifies the input-stream buffering threshold limit in number of kilobytes. Its value should not exceed the property value. After a request entity exceeds this threshold, it is buffered transparently onto disk.