SharpFS -- A Virtual FileSystem for .NET

FileManager.FileCompletionHandler Delegate

[This is preliminary documentation and subject to change.]

Delegate handler called when a file request has finished. Not called if an error occurred.

public delegate void FileManager.FileCompletionHandler(
   string name,
   MemoryStream data
);

Parameters

name
The name of the file that has finished.
data
The data of the file.

Remarks

This delegate will be run from the thread where the file was loaded. Make sure that any operations this delegate does are thread safe.

Requirements

Namespace: SharpFS

Assembly: SharpFS (in SharpFS.dll)

See Also

SharpFS Namespace