Constructor.

Namespace: MonoSoftware.MonoX
Assembly: MonoX (in MonoX.dll) Version: 5.1.40.5065 (5.1.40.5065)

Syntax

C#
public FileUploadEventArgs(
	UploadedFile uploadedFile,
	string targetPath
)
Visual Basic
Public Sub New ( 
	uploadedFile As UploadedFile,
	targetPath As String
)
Visual C++
public:
FileUploadEventArgs(
	UploadedFile^ uploadedFile, 
	String^ targetPath
)
F#
new : 
        uploadedFile : UploadedFile * 
        targetPath : string -> FileUploadEventArgs

Parameters

uploadedFile
Type: UploadedFile
Uploaded file.
targetPath
Type: System..::..String
Target virtual path of the uploaded file.

See Also