This is really aggravating but I want to confirm this observation.
The official MS documentation for Microsoft.SharePoint.Client Web class states in the remarks that you can call the “AllWebs” method on the Site object that will return “all websites within the site collection. This is what I want because my past experience shows it includes all Webs recursively throughout the Site Collection including the RootWeb
However, the official MS documentation for Microsoft.SharePoint.Client Site class has no such method or property!
The AllWebs link points to the normal SharePoint API documentation and the only property close to the Site.AllWebs property is Web.Webs. The Web.Webs property only returns the webs directly beneath the Web from which it is called.
If this is the case than what is the best way to get All the Webs within a site collection INCLUDING the root web?