ReceivingResponseEventArgs Class

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

Inheritance Hierarchy

System.Object
  System.EventArgs
    System.Data.Services.Client.ReceivingResponseEventArgs

Namespace:  System.Data.Services.Client
Assembly:  Microsoft.Data.Services.Client (in Microsoft.Data.Services.Client.dll)

Syntax

'Declaration
Public Class ReceivingResponseEventArgs _
    Inherits EventArgs
'Usage
Dim instance As ReceivingResponseEventArgs
public class ReceivingResponseEventArgs : EventArgs
public ref class ReceivingResponseEventArgs : public EventArgs
type ReceivingResponseEventArgs =  
    class 
        inherit EventArgs 
    end
public class ReceivingResponseEventArgs extends EventArgs

The ReceivingResponseEventArgs type exposes the following members.

Constructors

  Name Description
Public method ReceivingResponseEventArgs(IODataResponseMessage, Descriptor) Initializes a new instance of the ReceivingResponseEventArgs class for a non-batch or top level $batch response.
Public method ReceivingResponseEventArgs(IODataResponseMessage, Descriptor, Boolean) Initializes a new instance of the ReceivingResponseEventArgs class.

Top

Properties

  Name Description
Public property 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.
Public property IsBatchPart True if the response is an inner batch operation or query; false otherwise.
Public property ResponseMessage Gets the response message that the client is receiving.

Top

Methods

  Name Description
Public method Equals (Inherited from Object.)
Protected method Finalize (Inherited from Object.)
Public method GetHashCode (Inherited from Object.)
Public method GetType (Inherited from Object.)
Protected method MemberwiseClone (Inherited from Object.)
Public method ToString (Inherited from Object.)

Top

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

See Also

Reference

System.Data.Services.Client Namespace