Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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)
share|improve this question
Why the downvote, folks? If you're going to downvote the question then at the very least you owe a comment to the OP explaining why. – Jagd Dec 12 '12 at 23:54

1 Answer

// "ctx" is the object of client context

ListCollection lists = web.Lists;                
ctx.Load(lists);
ctx.ExecuteQuery();

In object "list" you will get all list names.

share|improve this answer
Thank you, but this is not an answer for my question :( – Warlock Jan 3 at 9:05

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.