/// <summary>
 /// Initializes the NextPageRequest property.
 /// </summary>
 public void InitializeNextPageRequest(IBaseClient client, string nextPageLinkString)
 {
     if (!string.IsNullOrEmpty(nextPageLinkString))
     {
         this.NextPageRequest = new SiteDrivesCollectionRequest(
             nextPageLinkString,
             client,
             null);
     }
 }
Example #2
0
 public static FacadeSitesDrivesRequest GetFacade(ISiteDrivesCollectionRequest request)
 {
     if (request == null)
     {
         return(null);
     }
     else
     {
         var facade = new FacadeSitesDrivesRequest();
         facade._base = request;
         return(facade);
     }
 }