SearchForPosts.GetSearchForPosts("search term", (o, e) =>
{
if (e.Error == null && e.Object != null)
{
// process result
}
});
Why my e.Object always equals null???
The answer is probably in e.Error.
The code should be more like this:
if (e.Error != null)
// process error
else
// process e.Object
Copyright (c) Marimer LLC