HttpRequest.TotalBytes Property

Definition

Gets the number of bytes in the current input stream.

C#
public int TotalBytes { get; }

Property Value

The number of bytes in the input stream.

Examples

The following code example determines whether the TotalBytes property value is greater than 1000 bytes and writes that information to a file.

C#
// Write a message to the file dependent upon
// the value of the TotalBytes property.
if (Request.TotalBytes > 1000)
{
    sw.WriteLine("The request is 1KB or greater");
}
else
{
    sw.WriteLine("The request is less than 1KB");
}

Applies to

Product Versions
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1