public static bool ShouldProceedAfterError(INSFileManagerDelegate This, NSFileManager fm, NSDictionary errorInfo)
 {
     return(false);
 }
 public virtual bool ShouldProceedAfterError(NSFileManager fm, NSDictionary errorInfo)
 {
     return(false);
 }
 // This was a duplicate [Export] so in order to avoid breaking the API we expose it this way.
 // NOTE: this is an Extension method, (NSFileManagerDelegate is a [Protocol]) so the exported methods are, by default, extensions.
 public static bool ShouldCopyItemAtPath(this INSFileManagerDelegate This, NSFileManager fileManager, string srcPath, string dstPath)
 {
     return(This.ShouldCopyItemAtPath(fileManager, (NSString)srcPath, (NSString)dstPath));
 }
 public virtual bool ShouldCopyItemAtPath(NSFileManager fileManager, string srcPath, string dstPath)
 {
     return(ShouldCopyItemAtPath(fileManager, (NSString)srcPath, (NSString)dstPath));
 }
Example #5
0
 public static bool ShouldProceedAfterError(INSFileManagerDelegate This, NSFileManager fm, NSDictionary errorInfo)
 {
     return false;
 }
Example #6
0
 // This was a duplicate [Export] so in order to avoid breaking the API we expose it this way.
 // NOTE: this is an Extension method, (NSFileManagerDelegate is a [Protocol]) so the exported methods are, by default, extensions.
 public static bool ShouldCopyItemAtPath(this INSFileManagerDelegate This, NSFileManager fileManager, string srcPath, string dstPath)
 {
     return This.ShouldCopyItemAtPath (fileManager, (NSString) srcPath, (NSString) dstPath);
 }
Example #7
0
 public virtual bool ShouldProceedAfterError(NSFileManager fm, NSDictionary errorInfo)
 {
     return false;
 }
Example #8
0
 public virtual bool ShouldCopyItemAtPath(NSFileManager fileManager, string srcPath, string dstPath)
 {
     return ShouldCopyItemAtPath (fileManager, (NSString) srcPath, (NSString) dstPath);
 }