OnCustomInfo Method

MCManager API

Gets called when custom data is to be added for a file custom data can for example be plugin specific name value items that should get added into a file listning.

Namespace:  Moxiecode.Manager
Assembly:  MCManager (in MCManager.dll) Version: 1.0.0.0

Syntax

C#
public virtual bool OnCustomInfo(
	ManagerEngine man,
	IFile file,
	string type,
	Hashtable custom
)
Visual Basic (Declaration)
Public Overridable Function OnCustomInfo ( _
	man As ManagerEngine, _
	file As IFile, _
	type As String, _
	custom As Hashtable _
) As Boolean
Visual C++
public:
virtual bool OnCustomInfo(
	ManagerEngine^ man, 
	IFile^ file, 
	String^ type, 
	Hashtable^ custom
)

Parameters

man
Type: Moxiecode.Manager..::.ManagerEngine
ManagerEngine reference that the plugin is assigned to.
file
Type: Moxiecode.Manager.FileSystems..::.IFile
File reference to add custom info/data to.
type
Type: System..::.String
Where is the info needed for example list or info.
custom
Type: System.Collections..::.Hashtable
Name/Value array to add custom items to.

Return Value

true/false if the execution of the event chain should continue execution.

Implements

IPlugin..::.OnCustomInfo(ManagerEngine, IFile, String, Hashtable)

See Also