FileWebRequest.ContentLength-Eigenschaft
Ruft die Länge des Inhalts der gesendeten Daten ab oder legt diese fest.
Namespace: System.Net
Assembly: System (in system.dll)
Syntax
'Declaration
Public Overrides Property ContentLength As Long
'Usage
Dim instance As FileWebRequest
Dim value As Long
value = instance.ContentLength
instance.ContentLength = value
public override long ContentLength { get; set; }
public:
virtual property long long ContentLength {
long long get () override;
void set (long long value) override;
}
/** @property */
public long get_ContentLength ()
/** @property */
public void set_ContentLength (long value)
public override function get ContentLength () : long
public override function set ContentLength (value : long)
Eigenschaftenwert
Die Anzahl der Bytes der gesendeten Anforderungsdaten.
Ausnahmen
Ausnahmetyp | Bedingung |
---|---|
ContentLength ist kleiner als 0. |
Beispiel
Im folgenden Codebeispiel wird die Länge des Inhalts der gesendeten Daten festgelegt. Ein vollständiges Beispiel finden Sie in der FileWebRequest-Klasse.
' 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)
// 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.set_ContentLength(byteArray.length);
String contentLength =
(new Long(myFileWebRequest.get_ContentLength())).ToString();
Console.WriteLine("\nThe content length is {0}.", contentLength);
Plattformen
Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
.NET Framework unterstützt nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen.
Versionsinformationen
.NET Framework
Unterstützt in: 2.0, 1.1, 1.0
Siehe auch
Referenz
FileWebRequest-Klasse
FileWebRequest-Member
System.Net-Namespace