/// <summary> /// Allows to search posts on user or community walls. /// </summary> /// <param name="methodParams">A <see cref="WallSearchParams"/> object with the params.</param> /// <returns>Returns a <see cref="List{T}"/> of <see cref="Post"/> objects.</returns> public async Task <Response <ItemsList <Post> > > Search(WallSearchParams methodParams) => await Request <ItemsList <Post> >("search", methodParams, true);
/// <summary> /// Allows to search posts on user or community walls. /// </summary> /// <param name="methodParams">A <see cref="WallSearchParams"/> object with the params.</param> /// <returns>Returns a <see cref="List{T}"/> of <see cref="Post"/> objects.</returns> public async Task<Response<ItemsList<Post>>> Search(WallSearchParams methodParams) => await Request<ItemsList<Post>>("search", methodParams, true);