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 内容的内容长度。 内容长度中不包含对内容设置的标头。 这对于易于计算内容长度的内容类型非常有用。

适用于