Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
The headers from an HTTP response associated with a batch request.
Namespace: System.Data.Services.Client
Assembly: Microsoft.Data.Services.Client (in Microsoft.Data.Services.Client.dll)
Syntax
'Declaration
Public ReadOnly Property BatchHeaders As IDictionary(Of String, String)
Get
'Usage
Dim instance As DataServiceResponse
Dim value As IDictionary(Of String, String)
value = instance.BatchHeaders
public IDictionary<string, string> BatchHeaders { get; }
public:
property IDictionary<String^, String^>^ BatchHeaders {
IDictionary<String^, String^>^ get ();
}
member BatchHeaders : IDictionary<string, string>
function get BatchHeaders () : IDictionary<String, String>
Property Value
Type: System.Collections.Generic.IDictionary<String, String>
An IDictionary object containing the name-value pairs of an HTTP response.
Remarks
The headers property on the DataServiceResponse instance returned will be an empty collection when batching is not used because there is no set of headers that represents the entire save operation.