Basically, I’m trying to create a binding for a property that is a block. It shows how to do this in the MonoTouch Documentation, but not for this specific case.
Here’s the property Im trying to bind
@property (copy) CouchDocumentPathMap documentPathMap;
CouchDocumentPathMap is defined as such
typedef NSString* (^CouchDocumentPathMap)(NSString* documentID);
In the documentation, it shows how to proceed for a (^)(id obj, BOOL *stop) block, but not for a (^Something)(id someParam) block.
Since it is not really useful to get “back” the block, you can bind this property like this: