Compartilhar via


HttpDateOrDeltaHeaderValue Classe

Definição

Representa o valor do cabeçalho HTTP Retry-After em uma resposta HTTP.

public ref class HttpDateOrDeltaHeaderValue sealed : IStringable
/// [Windows.Foundation.Metadata.ContractVersion(Windows.Foundation.UniversalApiContract, 65536)]
/// [Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
/// [Windows.Foundation.Metadata.Threading(Windows.Foundation.Metadata.ThreadingModel.Both)]
class HttpDateOrDeltaHeaderValue final : IStringable
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.Foundation.UniversalApiContract), 65536)]
[Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
[Windows.Foundation.Metadata.Threading(Windows.Foundation.Metadata.ThreadingModel.Both)]
public sealed class HttpDateOrDeltaHeaderValue : IStringable
Public NotInheritable Class HttpDateOrDeltaHeaderValue
Implements IStringable
Herança
Object Platform::Object IInspectable HttpDateOrDeltaHeaderValue
Atributos
Implementações

Requisitos do Windows

Família de dispositivos
Windows 10 (introduzida na 10.0.10240.0)
API contract
Windows.Foundation.UniversalApiContract (introduzida na v1.0)

Exemplos

O código de exemplo a seguir mostra um método para obter e definir o cabeçalho HTTP Retry-After em um objeto HttpResponseMessage usando as propriedades e métodos na classe HttpDateOrDeltaHeaderValue.

using System;
using Windows.Web.Http;
using Windows.Web.Http.Headers;

        public void DemonstrateHeaderResponseRetryAfter() {
            var response = new HttpResponseMessage();

            // Set the header with a strong type.
            HttpDateOrDeltaHeaderValue newvalue;
            bool parseOk = HttpDateOrDeltaHeaderValue.TryParse("", out newvalue);
            if (parseOk) {
                response.Headers.RetryAfter = newvalue;
            }

            // Get the strong type out
            System.Diagnostics.Debug.WriteLine("Date value in ticks: {0}", response.Headers.Date.Value.Ticks);

            // The ToString() is useful for diagnostics, too.
            System.Diagnostics.Debug.WriteLine("The Date ToString() results: {0}", response.Headers.Date.ToString());
        }        

Comentários

A classe HttpDateOrDeltaHeaderValue representa o cabeçalho HTTP Retry-After em uma resposta HTTP.

A propriedade RetryAfter no HttpResponseHeaderCollection retorna um objeto HttpDateOrDeltaHeaderValue.

Propriedades

Date

Obtém o valor das informações de data HTTP usadas no cabeçalho HTTP Retry-After .

Delta

Obtém o valor das informações de segundos delta usadas no cabeçalho HTTP Retry-After .

Métodos

Parse(String)

Converte uma cadeia de caracteres em uma instância HttpDateOrDeltaHeaderValue .

ToString()

Retorna uma cadeia de caracteres que representa o objeto HttpDateOrDeltaHeaderValue atual.

TryParse(String, HttpDateOrDeltaHeaderValue)

Determina se uma cadeia de caracteres é uma informação HttpDateOrDeltaHeaderValue válida.

Aplica-se a

Confira também