WorkflowApplication.BeginGetRunnableInstance Méthode

Définition

Récupère un propriétaire d'instance exécutable de façon asynchrone à l'aide du modèle de conception asynchrone IAsyncResult.

Surcharges

BeginGetRunnableInstance(InstanceStore, AsyncCallback, Object)

Extrait un propriétaire d'instance exécutable de façon asynchrone à l'aide du modèle de conception asynchrone IAsyncResult avec les fonctions d'enregistrement, de rappel et d'état de l'instance spécifiée.

BeginGetRunnableInstance(InstanceStore, TimeSpan, AsyncCallback, Object)

Extrait un propriétaire d'instance exécutable de façon asynchrone à l'aide du modèle de conception asynchrone IAsyncResult avec les fonctions d'enregistrement, d'intervalle de délai d'expiration, de rappel et d'état de l'instance spécifiée.

BeginGetRunnableInstance(InstanceStore, AsyncCallback, Object)

Extrait un propriétaire d'instance exécutable de façon asynchrone à l'aide du modèle de conception asynchrone IAsyncResult avec les fonctions d'enregistrement, de rappel et d'état de l'instance spécifiée.

public:
 static IAsyncResult ^ BeginGetRunnableInstance(System::Runtime::DurableInstancing::InstanceStore ^ instanceStore, AsyncCallback ^ callback, System::Object ^ state);
public static IAsyncResult BeginGetRunnableInstance (System.Runtime.DurableInstancing.InstanceStore instanceStore, AsyncCallback callback, object state);
static member BeginGetRunnableInstance : System.Runtime.DurableInstancing.InstanceStore * AsyncCallback * obj -> IAsyncResult
Public Shared Function BeginGetRunnableInstance (instanceStore As InstanceStore, callback As AsyncCallback, state As Object) As IAsyncResult

Paramètres

instanceStore
InstanceStore

Accès à un état persistant de l'instance actuelle de l'application de flux de travail.

callback
AsyncCallback

Méthode à appeler lorsque l'opération de chargement est terminée.

state
Object

Objet spécifique à l'application facultatif qui contient les informations sur l'opération asynchrone.

Retours

Référence à l'opération asynchrone.

S’applique à

BeginGetRunnableInstance(InstanceStore, TimeSpan, AsyncCallback, Object)

Extrait un propriétaire d'instance exécutable de façon asynchrone à l'aide du modèle de conception asynchrone IAsyncResult avec les fonctions d'enregistrement, d'intervalle de délai d'expiration, de rappel et d'état de l'instance spécifiée.

public:
 static IAsyncResult ^ BeginGetRunnableInstance(System::Runtime::DurableInstancing::InstanceStore ^ instanceStore, TimeSpan timeout, AsyncCallback ^ callback, System::Object ^ state);
public static IAsyncResult BeginGetRunnableInstance (System.Runtime.DurableInstancing.InstanceStore instanceStore, TimeSpan timeout, AsyncCallback callback, object state);
static member BeginGetRunnableInstance : System.Runtime.DurableInstancing.InstanceStore * TimeSpan * AsyncCallback * obj -> IAsyncResult
Public Shared Function BeginGetRunnableInstance (instanceStore As InstanceStore, timeout As TimeSpan, callback As AsyncCallback, state As Object) As IAsyncResult

Paramètres

instanceStore
InstanceStore

Accès à un état persistant de l'instance actuelle de l'application de flux de travail.

timeout
TimeSpan

Intervalle dans lequel l'opération de chargement doit être réalisée avant que l'opération ne soit annulée et qu'une TimeoutException ne soit levée.

callback
AsyncCallback

Méthode à appeler lorsque l'opération de chargement est terminée.

state
Object

Objet spécifique à l'application facultatif qui contient les informations sur l'opération asynchrone.

Retours

Référence à l'opération asynchrone.

S’applique à