Raised when video file is upload and conversion is needed.

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

Syntax

C#
protected virtual void ConvertToVideo(
	ref string filePath,
	ref string targetPath,
	ref string originalFileName,
	ref string fileName,
	ref string thumbnailImagePath
)
Visual Basic
Protected Overridable Sub ConvertToVideo ( 
	ByRef filePath As String,
	ByRef targetPath As String,
	ByRef originalFileName As String,
	ByRef fileName As String,
	ByRef thumbnailImagePath As String
)
Visual C++
protected:
virtual void ConvertToVideo(
	String^% filePath, 
	String^% targetPath, 
	String^% originalFileName, 
	String^% fileName, 
	String^% thumbnailImagePath
)
F#
abstract ConvertToVideo : 
        filePath : string byref * 
        targetPath : string byref * 
        originalFileName : string byref * 
        fileName : string byref * 
        thumbnailImagePath : string byref -> unit 
override ConvertToVideo : 
        filePath : string byref * 
        targetPath : string byref * 
        originalFileName : string byref * 
        fileName : string byref * 
        thumbnailImagePath : string byref -> unit 

Parameters

filePath
Type: System..::..String%
File path.
targetPath
Type: System..::..String%
Target path.
originalFileName
Type: System..::..String%
Original file name.
fileName
Type: System..::..String%
File name.
thumbnailImagePath
Type: System..::..String%
Thumbnail image path.

See Also