DataServiceContext.ReceivingResponse Event

Definition

This event fires when a response is received by the client. It fires for both top level responses and each operation or query within a batch response.

public virtual event EventHandler<Microsoft.OData.Client.ReceivingResponseEventArgs> ReceivingResponse;
member this.ReceivingResponse : EventHandler<Microsoft.OData.Client.ReceivingResponseEventArgs> 
Public Overridable Event ReceivingResponse As EventHandler(Of ReceivingResponseEventArgs) 

Event Type

Remarks

On top level requests, the event is fired before any processing is done. For inner batch operations, the event is also fired before any processing is done, with the exception that the content-ID of a changeset operation will be read before the event is fired.

Applies to