CapeUnitBaseOnUnitOperationEndCalculation Method

Occurs at the completion of a unit operation calculation process.

Definition

Namespace: CapeOpen
Assembly: CapeOpen (in CapeOpen.dll) Version: 1.0.0.0 (1.0.0.0)
protected void OnUnitOperationEndCalculation(
	string message
)

Parameters

message  String
A string that contains information about the the calculation.

Remarks

Raising an event invokes the event handler through a delegate.

The OnUnitOperationEndCalculation method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.

Notes to Inheritors:

When overriding OnUnitOperationEndCalculation in a derived class, be sure to call the base class's OnUnitOperationBeginCalculation method so that registered delegates receive the event.

See Also