HttpStringContent.TryComputeLength(UInt64) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
以位元組為單位計算 HttpStringContent 長度。
public:
virtual bool TryComputeLength([Out] unsigned long long & length) = TryComputeLength;
bool TryComputeLength([Out] uint64_t & length);
public bool TryComputeLength(out ulong length);
Public Function TryComputeLength (ByRef length As ULong) As Boolean
參數
- length
-
UInt64
unsigned long long
uint64_t
HttpStringContent的位元組長度。
傳回
Boolean
bool
如果length是有效的長度,則為true;否則為false。
傳回值永遠不應該 是 false。
實作
M:Windows.Web.Http.IHttpContent.TryComputeLength(System.UInt64@)
M:Windows.Web.Http.IHttpContent.TryComputeLength(unsigned long long@)
M:Windows.Web.Http.IHttpContent.TryComputeLength(uint64_t@)
備註
TryComputeLength 方法會計算 HttpStringContent中 HTTP 內容的內容長度。 內容上設定的標頭不會包含在內容長度中。 這適用于容易計算內容長度的內容類型。