Click or drag to resize

WinFormsPathCollectionGetFolderSizeCallbackDelegate Delegate

This delegate is used by GetFolderSize(String, WinFormsPathCollectionGetFolderSizeCallbackDelegate, Object) to get folder sizes asynchronously.

Namespace: Jam.Shell
Assembly: ShellBrowser (in ShellBrowser.dll) Version: 7.2
Syntax
public delegate void GetFolderSizeCallbackDelegate(
	string path,
	long foldersize,
	int filecount,
	int foldercount,
	Object state
)

Parameters

path  String
The path for that its entire size was determined.
foldersize  Int64
The size of the path in bytes.
filecount  Int32
The number of files in the path.
foldercount  Int32
The number of folders in the path.
state  Object
An optional, user-provided object that distinguishes this particular asynchronous request from other requests.
See Also