Saves a file.

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

Syntax

C#
public string StoreFile(
	Stream stream,
	string path
)
Visual Basic
Public Function StoreFile ( 
	stream As Stream,
	path As String
) As String
Visual C++
public:
virtual String^ StoreFile(
	Stream^ stream, 
	String^ path
) sealed
F#
abstract StoreFile : 
        stream : Stream * 
        path : string -> string 
override StoreFile : 
        stream : Stream * 
        path : string -> string 

Parameters

stream
Type: System.IO..::..Stream
File stream.
path
Type: System..::..String
Path of the file to save.

Return Value

Type: String
File path.

Implements

IFileContentProvider..::..StoreFile(Stream, String)

See Also