I have to perform a "access check" in the data base for the results returned by the search service.
So I'm trying to implement the snippet in the link below, where it can return "AccessChecker" collection instead of single item.
http://msdn.microsoft.com/en-us/library/aa981124%28v=office.12%29.aspx
but I a build time error:
"Return TypeDescriptor for MethodInstance 'CheckItemAccess' should not be a collection since the MethodInstance type is 'AccessChecker'. "
It works fine when I have IsCollection="false" (meaning if I return and execute single item at a time)
Thanks in advance.