[This is preliminary documentation and is subject to change.]

When overriden in derived class handles end of operation reported by Total Commander

Namespace: Tools.TotalCommanderT
Assembly: Tools.TotalCommander (in Tools.TotalCommander.dll) Version: 1.5.3.38916 (1.5.3.38916)

Syntax

C#
public virtual void OnOperationFinished(
	OperationEventArgs e
)
Visual Basic
Public Overridable Sub OnOperationFinished ( _
	e As OperationEventArgs _
)
Visual C++
public:
virtual void OnOperationFinished(
	OperationEventArgs^ e
)
F#
abstract OnOperationFinished : 
        e:OperationEventArgs -> unit 
override OnOperationFinished : 
        e:OperationEventArgs -> unit 
JScript
public function OnOperationFinished(
	e : OperationEventArgs
)

Parameters

e
Type: Tools.TotalCommanderT..::..OperationEventArgs
Event arguments

Remarks

This method is called after operation finishes. Call of this method is always fololowed by call of OnOperationStatusChanged(OperationEventArgs).

Do not call this method from your code. It is called by Total Commander. In case you use plugin outside of Total Commander call StatusInfo(String, OperationStatus, OperationKind).

See Also