'Declaration Protected MustOverride Function DoGetFolder( _ ByVal session As FileSystemEventsSession, _ ByVal folderName As String _ ) As AbstractFolder
'Usage Dim instance As AbstractFolder Dim session As FileSystemEventsSession Dim folderName As String Dim value As AbstractFolder value = instance.DoGetFolder(session, folderName)
protected abstract AbstractFolder DoGetFolder( FileSystemEventsSession session, string folderName )
Parameters
- session
- A reference to a FileSystemEventsSession object which is responsible for raising all events that occur during the process.
- folderName
- The name of the folder to retrieve.
Return Value
Should return reference to an AbstractFolder object regardless if the folder represented by the object exists or not.