HttpRequest.TotalBytes Proprietà

Definizione

Ottiene il numero di byte nel flusso di input corrente.

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

Valore della proprietà

Numero di byte nel flusso di input.

Esempio

L'esempio di codice seguente determina se il valore della TotalBytes proprietà è maggiore di 1000 byte e scrive tali informazioni in un file.

// 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

Si applica a