HttpRequest.TotalBytes Eigenschaft

Definition

Ruft die Anzahl der Bytes im aktuellen Eingabestream ab.

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

Eigenschaftswert

Int32

Die Anzahl der Bytes im Eingabestream.

Beispiele

Im folgenden Codebeispiel wird ermittelt, ob der TotalBytes Eigenschaftswert größer als 1000 Bytes ist und diese Informationen in eine Datei schreibt.

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

Gilt für