FileWebRequest.ContentLength Proprietà

Definizione

Ottiene o imposta la lunghezza del contenuto dei dati inviati.

public:
 virtual property long ContentLength { long get(); void set(long value); };
public override long ContentLength { get; set; }
member this.ContentLength : int64 with get, set
Public Overrides Property ContentLength As Long

Valore della proprietà

Numero di byte di dati della richiesta inviata.

Eccezioni

Esempio

Nell'esempio di codice seguente viene impostata la lunghezza del contenuto dei dati inviati. Fare riferimento all'esempio completo nella FileWebRequest classe .

// Set the ContentLength property.
myFileWebRequest->ContentLength = byteArray->Length;
String^ contentLength = myFileWebRequest->ContentLength.ToString();
Console::WriteLine( "\nThe content length is {0}.", contentLength );
// Set the ContentLength property.
myFileWebRequest.ContentLength = byteArray.Length;

string contentLength = myFileWebRequest.ContentLength.ToString ();

Console.WriteLine ("\nThe content length is {0}.", contentLength);
' Set the ContentLength property.
myFileWebRequest.ContentLength = byteArray.Length

Dim contentLength As String = myFileWebRequest.ContentLength.ToString()

Console.WriteLine(ControlChars.Lf + "The content length is {0}.", contentLength)

Si applica a