Compartir a través de


DataServiceContext.BeginLoadProperty Método (Object, String, DataServiceQueryContinuation, AsyncCallback, Object)

Carga de forma asincrónica la página siguiente de entidades relacionadas del servicio de datos usando el objeto de continuación de consulta proporcionado.

Espacio de nombres:  System.Data.Services.Client
Ensamblado:  Microsoft.Data.Services.Client (en Microsoft.Data.Services.Client.dll)

Sintaxis

'Declaración
Public Function BeginLoadProperty ( _
    entity As Object, _
    propertyName As String, _
    continuation As DataServiceQueryContinuation, _
    callback As AsyncCallback, _
    state As Object _
) As IAsyncResult
'Uso
Dim instance As DataServiceContext
Dim entity As Object
Dim propertyName As String
Dim continuation As DataServiceQueryContinuation
Dim callback As AsyncCallback
Dim state As Object
Dim returnValue As IAsyncResult

returnValue = instance.BeginLoadProperty(entity, _
    propertyName, continuation, callback, _
    state)
public IAsyncResult BeginLoadProperty(
    Object entity,
    string propertyName,
    DataServiceQueryContinuation continuation,
    AsyncCallback callback,
    Object state
)
public:
IAsyncResult^ BeginLoadProperty(
    Object^ entity, 
    String^ propertyName, 
    DataServiceQueryContinuation^ continuation, 
    AsyncCallback^ callback, 
    Object^ state
)
member BeginLoadProperty : 
        entity:Object * 
        propertyName:string * 
        continuation:DataServiceQueryContinuation * 
        callback:AsyncCallback * 
        state:Object -> IAsyncResult 
public function BeginLoadProperty(
    entity : Object, 
    propertyName : String, 
    continuation : DataServiceQueryContinuation, 
    callback : AsyncCallback, 
    state : Object
) : IAsyncResult

Parámetros

  • entity
    Tipo: System.Object
    Entidad que contiene la propiedad que se va a cargar.
  • propertyName
    Tipo: System.String
    Nombre de la propiedad de la entidad especificada que se va a cargar.
  • callback
    Tipo: System.AsyncCallback
    Delegado que se va a invocar cuando los resultados estén disponibles para consumo del cliente.
  • state
    Tipo: System.Object
    Objeto de estados definido por el usuario pasado a la devolución de llamada.

Valor devuelto

Tipo: System.IAsyncResult
IAsyncResult que representa el estado de la operación.

Comentarios

El objeto DataServiceQueryContinuation<T> proporcionado contiene el URI que, cuando se ejecuta, devuelve la página siguiente de datos del resultado de la consulta.

Vea también

Referencia

DataServiceContext Clase

Sobrecarga de BeginLoadProperty

Espacio de nombres System.Data.Services.Client