FeedResourceResponse.Headers Property

Definition

Gets or sets an optional dictionary of header values that may have been returned from a web request by the feed provider.

public:
 property IIterable<IKeyValuePair<Platform::String ^, Platform::String ^> ^> ^ Headers { IIterable<IKeyValuePair<Platform::String ^, Platform::String ^> ^> ^ get(); void set(IIterable<IKeyValuePair<Platform::String ^, Platform::String ^> ^> ^ value); };
IIterable<IKeyValuePair<winrt::hstring, winrt::hstring const&>> Headers();

void Headers(IIterable<IKeyValuePair<winrt::hstring, winrt::hstring const&>> value);
public IEnumerable<KeyValuePair<string,string>> Headers { get; set; }
var iIterable = feedResourceResponse.headers;
feedResourceResponse.headers = iIterable;
Public Property Headers As IEnumerable(Of KeyValuePair(Of String, String))

Property Value

IIterable<IKeyValuePair<String,String>>

IEnumerable<KeyValuePair<String,String>>

IIterable<IKeyValuePair<Platform::String,Platform::String>>

IIterable<IKeyValuePair<winrt::hstring,winrt::hstring>>

A dictionary of header values.

Applies to