Store the uploaded file using the current file content provider.

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

Syntax

C#
protected virtual void StoreFile(
	string sourceFilePath,
	string destinationFilePath
)
Visual Basic
Protected Overridable Sub StoreFile ( 
	sourceFilePath As String,
	destinationFilePath As String
)
Visual C++
protected:
virtual void StoreFile(
	String^ sourceFilePath, 
	String^ destinationFilePath
)
F#
abstract StoreFile : 
        sourceFilePath : string * 
        destinationFilePath : string -> unit 
override StoreFile : 
        sourceFilePath : string * 
        destinationFilePath : string -> unit 

Parameters

sourceFilePath
Type: System..::..String
Source file path.
destinationFilePath
Type: System..::..String
Destination file path.

See Also