class HttpResponseHeaders

in global :: System . Net . Http . Headers

Represents the collection of Response Headers as defined in RFC 2616.


public Nullable<TimeSpan> Age { get; set; }

Gets or sets the value of the header for an HTTP response.

  • Returns The value of the header for an HTTP response.

public Nullable<bool> ConnectionClose { get; set; }

Gets or sets a value that indicates if the header for an HTTP response contains Close.

  • Returns if the header contains Close, otherwise .

public Nullable<DateTimeOffset> Date { get; set; }

Gets or sets the value of the header for an HTTP response.

  • Returns The value of the header for an HTTP response.

public Uri Location { get; set; }

Gets or sets the value of the header for an HTTP response.

  • Returns The value of the header for an HTTP response.

public Nullable<bool> TransferEncodingChunked { get; set; }

Gets or sets a value that indicates if the header for an HTTP response contains chunked.

  • Returns if the header contains chunked, otherwise .

public Type GetType( )

😔 No documentation found.

public void Clear( )

😔 No documentation found.

public bool Remove( string name )

😔 No documentation found.

public IEnumerator<KeyValuePair<string,IEnumerable<string>>> GetEnumerator( )

😔 No documentation found.

public string ToString( )

😔 No documentation found.

public bool Contains( string name )

😔 No documentation found.

public int GetHashCode( )

😔 No documentation found.

public IEnumerable<string> GetValues( string name )

😔 No documentation found.

public bool Equals( object obj )

😔 No documentation found.

public bool TryAddWithoutValidation( string name, string value )

😔 No documentation found.

public void Add( string name, IEnumerable<string> values )

😔 No documentation found.

public void Add( string name, string value )

😔 No documentation found.

public HttpHeadersNonValidated NonValidated { get; }

😔 No documentation found.

public bool TryGetValues( string name, ref IEnumerable<string> values )

😔 No documentation found.

public bool TryAddWithoutValidation( string name, IEnumerable<string> values )

😔 No documentation found.