Hi Nagaraj,
Your code mixes ClientLogin with the OAuth flow.
If you want to authenticate using username and password (ClientLogin) and retrieve all documents, it should look like the following:
static void Main(string[] args)
{
DocumentsService service = new DocumentsService("DocumentServiceSample");
DocumentsListQuery query = new DocumentsListQuery();
AtomFeed feed = service.Query(query);