WinFormsPathCollectionGetFolderSizeCallbackDelegate Delegate |
Namespace: Jam.ShellAssembly: ShellBrowser (in ShellBrowser.dll) Version: 7.2
Syntaxpublic 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 -> unitParameters
- 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