HttpRequest.TotalBytes Propiedad

Definición

Obtiene el número de bytes del flujo de entrada actual.

public:
 property int TotalBytes { int get(); };
public int TotalBytes { get; }
member this.TotalBytes : int
Public ReadOnly Property TotalBytes As Integer

Valor de propiedad

Número de bytes del flujo de entrada.

Ejemplos

En el ejemplo de código siguiente se determina si el valor de la TotalBytes propiedad es mayor que 1000 bytes y escribe esa información en un archivo.

// 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");
}
' Write a message to the file dependent upon
' the value of the TotalBytes property.
If Request.TotalBytes > 1000 Then
    sw.WriteLine("The request is 1KB or greater")
Else
    sw.WriteLine("The request is less than 1KB")
End If

Se aplica a