ContentLength Property
[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]
When overridden in a descendant class, gets or sets the content length of the request data being sent.
Namespace: System.Net
Assembly: System.Http (in System.Http.dll)
Syntax
'Declaration
Public Overridable Property ContentLength As Long
public virtual long ContentLength { get; set; }
public:
virtual property long long ContentLength {
long long get ();
void set (long long value);
}
abstract ContentLength : int64 with get, set
override ContentLength : int64 with get, set
function get ContentLength () : long
function set ContentLength (value : long)
Property Value
Type: System. . :: . .Int64
The number of bytes of request data being sent.
Remarks
The ContentLength property contains the number of bytes of data sent to the Internet resource by the WebRequest instance.
Note
The WebRequest class is an abstract class. The actual behavior of WebRequest instances at run time is determined by the descendant class returned by the WebRequest..::..Create method. For more information about default values and exceptions, see the documentation for the descendant classes, such as HttpWebRequest and FileWebRequest.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see dd66cd4c-b087-415f-9c3e-94e3a1835f74.