共用方式為


HttpStringContent.TryComputeLength(UInt64) 方法

定義

以位元組為單位計算 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 內容的內容長度。 內容上設定的標頭不會包含在內容長度中。 這適用于容易計算內容長度的內容類型。

適用於