Partager via


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

Charge de façon asynchrone la page d'entités associées suivante du service de données en utilisant l'objet de continuation de requête fourni.

Espace de noms :  System.Data.Services.Client
Assembly :  Microsoft.Data.Services.Client (en Microsoft.Data.Services.Client.dll)

Syntaxe

'Déclaration
Public Function BeginLoadProperty ( _
    entity As Object, _
    propertyName As String, _
    continuation As DataServiceQueryContinuation, _
    callback As AsyncCallback, _
    state As Object _
) As IAsyncResult
'Utilisation
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

Paramètres

  • entity
    Type : System.Object
    Entité qui contient la propriété à charger.
  • propertyName
    Type : System.String
    Nom de la propriété de l'entité spécifiée à charger.
  • callback
    Type : System.AsyncCallback
    Délégué à appeler lorsque les résultats sont disponibles pour un client.
  • state
    Type : System.Object
    Objet d'état défini par l'utilisateur passé au rappel.

Valeur de retour

Type : System.IAsyncResult
IAsyncResult qui représente l'état de l'opération.

Notes

L'objet DataServiceQueryContinuation<T> fourni contient l'URI qui, lorsqu'il est exécuté, retourne la page de données suivante dans le résultat de la requête.

Voir aussi

Référence

DataServiceContext Classe

Surcharge BeginLoadProperty

Espace de noms System.Data.Services.Client