ResponseHeaders Struct

Definition

Headers received as part of the Response.

public readonly struct ResponseHeaders : System.Collections.Generic.IEnumerable<Azure.Core.HttpHeader>
type ResponseHeaders = struct
    interface seq<HttpHeader>
    interface IEnumerable
Public Structure ResponseHeaders
Implements IEnumerable(Of HttpHeader)
Inheritance
ResponseHeaders
Implements

Properties

ContentLength

Gets the parsed value of "Content-Length" header.

ContentLengthLong

Gets the parsed value of "Content-Length" header as a long.

ContentType

Gets the value of "Content-Type" header.

Date

Gets the parsed value of "Date" or "x-ms-date" header.

ETag

Gets the parsed value of "ETag" header.

RequestId

Gets the value of "x-ms-request-id" header.

Methods

Contains(String)

Returns true if the header is stored in the collection.

GetEnumerator()

Returns an enumerator that iterates through the ResponseHeaders.

TryGetValue(String, String)

Returns header value if the header is stored in the collection. If header has multiple values they are going to be joined with a comma.

TryGetValues(String, IEnumerable<String>)

Returns header values if the header is stored in the collection.

Explicit Interface Implementations

IEnumerable.GetEnumerator()

Returns an enumerator that iterates through the ResponseHeaders.

Applies to