public virtual IAsyncResult BeginGetFileInfos(
string directory,
string wildcard,
bool includeSubdirectories,
AsyncCallback callback,
Object state
)Public Overridable Function BeginGetFileInfos (
directory As String,
wildcard As String,
includeSubdirectories As Boolean,
callback As AsyncCallback,
state As Object
) As IAsyncResultpublic:
virtual IAsyncResult^ BeginGetFileInfos(
String^ directory,
String^ wildcard,
bool includeSubdirectories,
AsyncCallback^ callback,
Object^ state
)abstract BeginGetFileInfos :
directory : string *
wildcard : string *
includeSubdirectories : bool *
callback : AsyncCallback *
state : Object -> IAsyncResult
override BeginGetFileInfos :
directory : string *
wildcard : string *
includeSubdirectories : bool *
callback : AsyncCallback *
state : Object -> IAsyncResult You can create a callback method that implements the AsyncCallback delegate and pass its name to the BeginGetFileInfos method. The state argument may be used to pass in data that will be passed to the callback method.
For more information please refer to the synchronous version of this method, GetFileInfos(String).