예제 #1
0
 /*
  *  Can we download.
  *  Based on guarantee date and availability of download
  *  @return true if downloadable
  */
 public bool IsDownloadable()
 {
     if (IsActive(true))
     {
         GetProduct();
         return(_product != null &&
                _product.HasDownloads());
     }
     //
     return(false);
 }       //	isDownloadable