WinFormsPathCollectionGetFolderSizeCallbackDelegate Delegate |
Namespace:
Jam.Shell
Assembly:
ShellBrowser.Winforms (in ShellBrowser.Winforms.dll) Version: 6.3.1
Syntax public delegate void GetFolderSizeCallbackDelegate(
string path,
long foldersize,
int filecount,
int foldercount,
Object state
)
Public Delegate Sub GetFolderSizeCallbackDelegate (
path As String,
foldersize As Long,
filecount As Integer,
foldercount As Integer,
state As Object
)
public delegate void GetFolderSizeCallbackDelegate(
String^ path,
long long foldersize,
int filecount,
int foldercount,
Object^ state
)
type GetFolderSizeCallbackDelegate =
delegate of
path : string *
foldersize : int64 *
filecount : int *
foldercount : int *
state : Object -> unit
Parameters
- path
- Type: SystemString
The path for that its entire size was determined. - foldersize
- Type: SystemInt64
The size of the path in bytes. - filecount
- Type: SystemInt32
The number of files in the path. - foldercount
- Type: SystemInt32
The number of folders in the path. - state
- Type: SystemObject
An optional, user-provided object that distinguishes this particular asynchronous request from other requests.
See Also