public NSFileAttributes GetAttributes(string path) { NSError error; var result = NSFileAttributes.FromDict(_GetAttributes(path, out error)); if (result == null) { throw new NSErrorException(error); } return(result); }
public NSFileAttributes TryGetAttributes(string path, out NSError error) { return(NSFileAttributes.FromDict(_GetAttributes(path, out error))); }
public NSFileAttributes GetAttributes(string path) { NSError error; return(NSFileAttributes.FromDict(_GetAttributes(path, out error))); }