PackWebRequest.ContentLength Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the Content-length
HTTP header.
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
Property Value
The content length, in bytes.
Exceptions
Set is not supported, PackWebRequest is read-only.
Remarks
Note that the pack URI protocol does not process information in the request other than the uniform resource identifier (URI). For most traditional purposes (such as estimating the size of POST information), there is no need for this property.
ContentLength returns 0 if the request resolves from the PackageStore cache.
The ContentLength property is shared with the inner WebRequest (GetInnerRequest).