C# Class Dev2.DynamicServices.Objects.ServiceAction

Represents a service action which is the single unit of work that can occur in a dynamic service. This could be stored procedure invocation in a data store or a webservice call or a static Service Method invocation that will occur locally on the service
Inheritance: Dev2.DynamicServices.Objects.Base.DynamicServiceObjectBase, IDisposable
Afficher le fichier Open project: Warewolf-ESB/Warewolf Class Usage Examples

Private Properties

Свойство Type Description

Méthodes publiques

Méthode Description
Compile ( ) : bool
Dispose ( ) : void
PopActivity ( ) : PooledServiceActivity

Acquires a composite PooledServiceActivity that holds a reference to the underlying activity, once you are done working with the activity you must return it to the pool via PushActivity.

PushActivity ( PooledServiceActivity activity ) : void

Pushes a previously released activity back into the activity pool.

ServiceAction ( ) : System

Initializes the Service Action Class

SetActivity ( System.Activities.Activity activity ) : void

Méthodes protégées

Méthode Description
Dispose ( bool disposing ) : void

Method Details

Compile() public méthode

public Compile ( ) : bool
Résultat bool

Dispose() public méthode

public Dispose ( ) : void
Résultat void

Dispose() protected méthode

protected Dispose ( bool disposing ) : void
disposing bool
Résultat void

PopActivity() public méthode

Acquires a composite PooledServiceActivity that holds a reference to the underlying activity, once you are done working with the activity you must return it to the pool via PushActivity.
public PopActivity ( ) : PooledServiceActivity
Résultat PooledServiceActivity

PushActivity() public méthode

Pushes a previously released activity back into the activity pool.
public PushActivity ( PooledServiceActivity activity ) : void
activity PooledServiceActivity
Résultat void

ServiceAction() public méthode

Initializes the Service Action Class
public ServiceAction ( ) : System
Résultat System

SetActivity() public méthode

public SetActivity ( System.Activities.Activity activity ) : void
activity System.Activities.Activity
Résultat void