Beispiel #1
0
        protected DriveFile GetDriveEntry(object entryId)
        {
            var driveId = MakeDriveId(entryId);

            try
            {
                var entry = GoogleDriveProviderInfo.GetDriveEntry(driveId);
                return(entry);
            }
            catch (Exception ex)
            {
                return(new ErrorDriveEntry(ex, driveId));
            }
        }