Could anybody help me to retrieve SharePoint Lists (NOT List Items) by CAML request using Client Side Object Model (CSOM).
I know how to get List Items using CAML query (I can use GetItems() method in a List object):
public ListItemCollection GetItems(CamlQuery query_);
I would like to do the same thing with Lists, but can't find a way, is it possible?
I'm looking for something like this:
SP.Web.GetLists(CamlQuery query)