Compartilhar via


HttpContentHeaderCollection.ContentLength Propriedade

Definição

Obtém ou define o valor do cabeçalho Http Content-Length no conteúdo HTTP.

public:
 property IReference<unsigned long long> ^ ContentLength { IReference<unsigned long long> ^ get(); void set(IReference<unsigned long long> ^ value); };
IReference<uint64_t> ContentLength();

void ContentLength(IReference<uint64_t> value);
public System.Nullable<ulong> ContentLength { get; set; }
var iReference = httpContentHeaderCollection.contentLength;
httpContentHeaderCollection.contentLength = iReference;
Public Property ContentLength As Nullable(Of ULong)

Valor da propriedade

IReference<UInt64>

Nullable<UInt64>

Windows.Foundation.IReference

IReference<uint64_t>

O valor do valor do cabeçalho Content-Length HTTP no conteúdo HTTP. Um valor nulo significa que o cabeçalho está ausente.

Comentários

O código de exemplo a seguir mostra um método para obter ou definir o cabeçalho Content-Length no conteúdo HTTP usando a propriedade ContentLength no objeto HttpContentHeaderCollection .

// Content-Length header
// nullable ulong
void DemoContentLength(IHttpContent content) {
    var h = content.Headers;

    h.ContentLength = 313;

    var header = h.ContentLength;
    uiLog.Text += "\nCONTENT LENGTH HEADER\n";

    uiLog.Text += string.Format("ContentLength: ToString: {0}\n\n", header.ToString());
}

Aplica-se a