public static IDrivesCollectionPage GetFacade(ISiteDrivesCollectionPage graphpage)
 {
     if (graphpage == null)
     {
         return(null);
     }
     else
     {
         FacadeSitesDrivesCollectionPage newpage = new FacadeSitesDrivesCollectionPage();
         newpage._page = graphpage;
         return(newpage);
     }
 }
예제 #2
0
        public async Task <IDrivesCollectionPage> GetAsync()
        {
            var response = await this._base.GetAsync();

            return(FacadeSitesDrivesCollectionPage.GetFacade(response));
        }