INSFileManagerDelegate Interface

Definition

Interface representing the required methods (if any) of the protocol NSFileManagerDelegate.

[Foundation.Protocol(Name="NSFileManagerDelegate", WrapperType=typeof(Foundation.NSFileManagerDelegateWrapper))]
public interface INSFileManagerDelegate : IDisposable, ObjCRuntime.INativeObject
type INSFileManagerDelegate = interface
    interface INativeObject
    interface IDisposable
Derived
Attributes
Implements

Remarks

This interface contains the required methods (if any) from the protocol defined by NSFileManagerDelegate.

If developers create classes that implement this interface, the implementation methods will automatically be exported to Objective-C with the matching signature from the method defined in the NSFileManagerDelegate protocol.

Optional methods (if any) are provided by the NSFileManagerDelegate_Extensions class as extension methods to the interface, allowing developers to invoke any optional methods on the protocol.

Properties

Handle

Handle (pointer) to the unmanaged object representation.

(Inherited from INativeObject)

Extension Methods

ShouldCopyItemAtPath(INSFileManagerDelegate, NSFileManager, NSString, NSString)

Creates a copy of this object, allocating memory from the specified zone or from the default zone if the argument is null.

ShouldCopyItemAtPath(INSFileManagerDelegate, NSFileManager, String, String)
ShouldCopyItemAtUrl(INSFileManagerDelegate, NSFileManager, NSUrl, NSUrl)
ShouldLinkItemAtPath(INSFileManagerDelegate, NSFileManager, String, String)
ShouldLinkItemAtUrl(INSFileManagerDelegate, NSFileManager, NSUrl, NSUrl)
ShouldMoveItemAtPath(INSFileManagerDelegate, NSFileManager, String, String)
ShouldMoveItemAtUrl(INSFileManagerDelegate, NSFileManager, NSUrl, NSUrl)
ShouldProceedAfterErrorCopyingItem(INSFileManagerDelegate, NSFileManager, NSError, NSUrl, NSUrl)
ShouldProceedAfterErrorCopyingItem(INSFileManagerDelegate, NSFileManager, NSError, String, String)
ShouldProceedAfterErrorLinkingItem(INSFileManagerDelegate, NSFileManager, NSError, NSUrl, NSUrl)
ShouldProceedAfterErrorLinkingItem(INSFileManagerDelegate, NSFileManager, NSError, String, String)
ShouldProceedAfterErrorMovingItem(INSFileManagerDelegate, NSFileManager, NSError, NSUrl, NSUrl)
ShouldProceedAfterErrorMovingItem(INSFileManagerDelegate, NSFileManager, NSError, String, String)
ShouldProceedAfterErrorRemovingItem(INSFileManagerDelegate, NSFileManager, NSError, NSUrl)
ShouldProceedAfterErrorRemovingItem(INSFileManagerDelegate, NSFileManager, NSError, String)
ShouldRemoveItemAtPath(INSFileManagerDelegate, NSFileManager, String)
ShouldRemoveItemAtUrl(INSFileManagerDelegate, NSFileManager, NSUrl)

Applies to