DataServiceResponse.GetEnumerator Method

Gets an enumerator that enables retrieval of responses to operations being tracked by OperationResponse objects within the DataServiceResponse.

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

Syntax

'Declaration
Public Function GetEnumerator As IEnumerator(Of OperationResponse)
'Usage
Dim instance As DataServiceResponse 
Dim returnValue As IEnumerator(Of OperationResponse)

returnValue = instance.GetEnumerator()
public IEnumerator<OperationResponse> GetEnumerator()
public:
virtual IEnumerator<OperationResponse^>^ GetEnumerator() sealed
abstract GetEnumerator : unit -> IEnumerator<OperationResponse> 
override GetEnumerator : unit -> IEnumerator<OperationResponse> 
public final function GetEnumerator() : IEnumerator<OperationResponse>

Return Value

Type: System.Collections.Generic.IEnumerator<OperationResponse>
An enumerator over the response received from the service.

Implements

IEnumerable<T>.GetEnumerator()

See Also

Reference

DataServiceResponse Class

System.Data.Services.Client Namespace