I have tried to get the collection of items inside the Site's RecycleBin. By Using CSOM
```
var web = Site.Web();
var bin = web.RecycleBin;
context.Load(bin);
context.ExecuteQuery();
Console.WriteLine(bin.count);
```
for the above code snippet, I got the count is zero('0'). Even though the site's recycle bin contains some file and also the 2nd stage recycle bin contains the files.
Is there any way to get the items inside the Recycle bin or its a bug or I need to include some property before loading it to context.