ReceivingResponseEventArgs Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
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. |
ReceivingResponseEventArgs(IODataResponseMessage, Descriptor)
Initializes a new instance of the ReceivingResponseEventArgs class for a non-batch or top level $batch response.
public ReceivingResponseEventArgs (Microsoft.OData.IODataResponseMessage responseMessage, Microsoft.OData.Client.Descriptor descriptor);
new Microsoft.OData.Client.ReceivingResponseEventArgs : Microsoft.OData.IODataResponseMessage * Microsoft.OData.Client.Descriptor -> Microsoft.OData.Client.ReceivingResponseEventArgs
Public Sub New (responseMessage As IODataResponseMessage, descriptor As Descriptor)
Parameters
- responseMessage
- IODataResponseMessage
The response message the client is receiving.
- descriptor
- Descriptor
Descriptor for the request that the client is receiving the response for.
Applies to
ReceivingResponseEventArgs(IODataResponseMessage, Descriptor, Boolean)
Initializes a new instance of the ReceivingResponseEventArgs class.
public ReceivingResponseEventArgs (Microsoft.OData.IODataResponseMessage responseMessage, Microsoft.OData.Client.Descriptor descriptor, bool isBatchPart);
new Microsoft.OData.Client.ReceivingResponseEventArgs : Microsoft.OData.IODataResponseMessage * Microsoft.OData.Client.Descriptor * bool -> Microsoft.OData.Client.ReceivingResponseEventArgs
Public Sub New (responseMessage As IODataResponseMessage, descriptor As Descriptor, isBatchPart As Boolean)
Parameters
- responseMessage
- IODataResponseMessage
The response message the client is receiving.
- descriptor
- Descriptor
Descriptor for the request that the client is receiving the response for.
- isBatchPart
- Boolean
Indicates if this response is to an inner batch query or operation.