<PackageReference Include="System.ClientModel" Version="1.7.0" />

PipelineResponseHeaders

public abstract class PipelineResponseHeaders : IEnumerable<KeyValuePair<string, string>>, IEnumerable
A collection of HTTP response headers and their values.

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

Gets an enumerator that iterates through the PipelineResponseHeaders.

public abstract bool TryGetValue(string name, out string value)

Attempts to retrieve the value associated with the specified header name.

public abstract bool TryGetValues(string name, out IEnumerable values)

Attempts to retrieve the values associated with the specified header name.