OnBeforeUpload Method

MCManager API

Gets called before data is streamed/uploaded from client.

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

Syntax

C#
public virtual bool OnBeforeUpload(
	ManagerEngine man,
	string cmd,
	NameValueCollection input
)
Visual Basic (Declaration)
Public Overridable Function OnBeforeUpload ( _
	man As ManagerEngine, _
	cmd As String, _
	input As NameValueCollection _
) As Boolean
Visual C++
public:
virtual bool OnBeforeUpload(
	ManagerEngine^ man, 
	String^ cmd, 
	NameValueCollection^ input
)

Parameters

man
Type: Moxiecode.Manager..::.ManagerEngine
ManagerEngine reference that the plugin is assigned to.
cmd
Type: System..::.String
Upload command that is to be performed.
input
Type: System.Collections.Specialized..::.NameValueCollection
Array of input arguments.

Return Value

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

Implements

IPlugin..::.OnBeforeUpload(ManagerEngine, String, NameValueCollection)

See Also