Share via


IODataRequestMessage.Headers Property

 

Gets an enumerable over all the headers for this message.

Namespace:   Microsoft.OData.Core
Assembly:  Microsoft.OData.Core (in Microsoft.OData.Core.dll)

Syntax

[SuppressMessageAttribute("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures", 
    Justification = "Users will never have to instantiate these; the rule does not apply.")]
IEnumerable<KeyValuePair<string, string>> Headers { get; }
[SuppressMessageAttribute("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures", 
    Justification = "Users will never have to instantiate these; the rule does not apply.")]
property IEnumerable<KeyValuePair<String^, String^>>^ Headers {
    IEnumerable<KeyValuePair<String^, String^>>^ get();
}
[<SuppressMessageAttribute("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures",
    Justification = "Users will never have to instantiate these; the rule does not apply.")>]
abstract Headers : IEnumerable<KeyValuePair<string, string>> with get
<SuppressMessageAttribute("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures",
    Justification := "Users will never have to instantiate these; the rule does not apply.")>
ReadOnly Property Headers As IEnumerable(Of KeyValuePair(Of String, String))

Property Value

Type: System.Collections.Generic.IEnumerable<KeyValuePair<String, String>>

An enumerable over all the headers for this message.

See Also

IODataRequestMessage Interface
Microsoft.OData.Core Namespace

Return to top