HttpRequest.TotalBytes Propriété

Définition

Obtient le nombre d'octets dans le flux d'entrée actuel.

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

Valeur de propriété

Nombre d'octets dans le flux d'entrée.

Exemples

L’exemple de code suivant détermine si la valeur de la TotalBytes propriété est supérieure à 1 000 octets et écrit ces informations dans un fichier.

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

S’applique à