MonobjcMonobjc Documented Class Library
NSFileManager..::..FileManagerShouldProceedAfterErrorRemovingItemAtURLEventHandler Delegate
NamespacesMonobjc.FoundationNSFileManagerNSFileManager..::..FileManagerShouldProceedAfterErrorRemovingItemAtURLEventHandler

An NSFileManager object sends this message if an error occurs during an attempt to delete a given URL.

Original signature is '- (BOOL)fileManager:(NSFileManager *)fileManager shouldProceedAfterError:(NSError *)error removingItemAtURL:(NSURL *)URL'

Available in Mac OS X v10.6 and later.

Declaration Syntax
C#Visual BasicVisual C++
public delegate bool FileManagerShouldProceedAfterErrorRemovingItemAtURLEventHandler(
	NSFileManager fileManager,
	NSError error,
	NSURL URL
)
Public Delegate Function FileManagerShouldProceedAfterErrorRemovingItemAtURLEventHandler ( _
	fileManager As NSFileManager, _
	error As NSError, _
	URL As NSURL _
) As Boolean
public delegate bool FileManagerShouldProceedAfterErrorRemovingItemAtURLEventHandler(
	NSFileManager^ fileManager, 
	NSError^ error, 
	NSURL^ URL
)
Parameters
fileManager (NSFileManager)
The NSFileManager object that sent this message.
error (NSError)
The error that occurred during the attempt to copy.
URL (NSURL)
The URL or a file or directory that fileManager is attempting to delete.
Return Value
YES if the operation should proceed, otherwise NO.
Version Information
  • Available in Monobjc Bridge: 10.6 (For Mac OS X 10.6 and later)

Assembly: Monobjc.Foundation (Module: Monobjc.Foundation)