Activity.Uninitialize(IServiceProvider) Method

Definition

When overridden in a derived class, provides un-initialization by a service provider for the activity.

protected public:
 virtual void Uninitialize(IServiceProvider ^ provider);
protected internal virtual void Uninitialize (IServiceProvider provider);
abstract member Uninitialize : IServiceProvider -> unit
override this.Uninitialize : IServiceProvider -> unit
Protected Friend Overridable Sub Uninitialize (provider As IServiceProvider)

Parameters

provider
IServiceProvider

The IServiceProvider that provides the service.

Remarks

This method provides the activity with an opportunity to clean up resources allocated during initialization.

Uninitialize is called when an activity instance is guaranteed not to perform any more execution. For activities that do not implement ICompensatableActivity, this occurs immediately after the activity closes, or, if the activity never executed, at workflow completion. For ICompensatableActivity activities, this occurs either after compensation or at workflow completion.

Applies to