HttpRequest.TotalBytes Vlastnost

Definice

Získá počet bajtů v aktuálním vstupním streamu.

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

Hodnota vlastnosti

Počet bajtů ve vstupním streamu.

Příklady

Následující příklad kódu určuje, zda TotalBytes je hodnota vlastnosti větší než 1000 bajtů, a zapíše tyto informace do souboru.

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

Platí pro