ReceivingResponseEventArgs Class

Definition

EventArgs class for the ReceivingResponse event. Exposes the ResponseMessage to the user.

public class ReceivingResponseEventArgs : EventArgs
type ReceivingResponseEventArgs = class
    inherit EventArgs
Public Class ReceivingResponseEventArgs
Inherits EventArgs
Inheritance
ReceivingResponseEventArgs

Constructors

ReceivingResponseEventArgs(IODataResponseMessage, Descriptor)

Initializes a new instance of the ReceivingResponseEventArgs class for a non-batch or top level $batch response.

ReceivingResponseEventArgs(IODataResponseMessage, Descriptor, Boolean)

Initializes a new instance of the ReceivingResponseEventArgs class.

Properties

Descriptor

Descriptor for the request that the client is receiving the response for. The descriptor may be null for certain types of requests, like most GET requests and the top level $batch request.

IsBatchPart

True if the response is an inner batch operation or query; false otherwise.

ResponseMessage

Gets the response message that the client is receiving.

Applies to